* getdate.y (bcopy): Don't bother with HAVE_BCOPY and HAVE_MEMCPY tests; always
authorKen Raeburn <raeburn@mit.edu>
Tue, 26 Aug 2003 20:21:19 +0000 (20:21 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 26 Aug 2003 20:21:19 +0000 (20:21 +0000)
define the macro if it's not already defined.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15795 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin/cli/ChangeLog
src/kadmin/cli/getdate.y

index 2c54a53263a7cdea8288a52057aa3f0252d8cff1..bd9373086105288f0f126dde33bbe08cadacd5c9 100644 (file)
@@ -1,3 +1,8 @@
+2003-08-26  Ken Raeburn  <raeburn@mit.edu>
+
+       * getdate.y (bcopy): Don't bother with HAVE_BCOPY and HAVE_MEMCPY
+       tests; always define the macro if it's not already defined.
+
 2003-06-24  Ken Raeburn  <raeburn@mit.edu>
 
        * kadmin.c (strdate): Increase size of buffer to 40.  Use sizeof
index 9c4ef654a6e5aa07dff00bdf215b95e569abf363..afb29b91bbc44c8fef440c9942d5f7dc758c1f38 100644 (file)
@@ -108,7 +108,7 @@ struct my_timeb {
 /* Some old versions of bison generate parsers that use bcopy.
    That loses on systems that don't provide the function, so we have
    to redefine it here.  */
-#if !defined (HAVE_BCOPY) && defined (HAVE_MEMCPY) && !defined (bcopy)
+#ifndef bcopy
 #define bcopy(from, to, len) memcpy ((to), (from), (len))
 #endif