* str_conv.c: If strptime() is present on system without a
authorEzra Peisach <epeisach@mit.edu>
Mon, 11 Jun 2001 15:18:40 +0000 (15:18 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 11 Jun 2001 15:18:40 +0000 (15:18 +0000)
prototype, provide one.

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

src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/str_conv.c

index 5e9061939b79f3a6fdd2132dbdba82391b2db44a..2802e8cb5b7b62809e1106a0dc421c8bbe9bf37d 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-11  Ezra Peisach  <epeisach@mit.edu>
+
+       * str_conv.c: If strptime() is present on system without a
+       prototype, provide one.
+
 2001-06-07  Ezra Peisach  <epeisach@mit.edu>
 
        * vfy_increds.c (krb5_verify_init_creds): Get rid of a variable
index 70fac19fa030ed010a774e6d67c604e70fb55b94..29214c1376aa827341e0eb821075c972dbdb45cd 100644 (file)
@@ -138,7 +138,7 @@ static size_t strftime (char *, size_t, const char *, const struct tm *);
 #endif
 
 #ifdef HAVE_STRPTIME
-#ifdef NEED_STRPTIME_PROTOTYPE
+#ifdef NEED_STRPTIME_PROTO
 extern char *strptime (const char *, const char *,
                            struct tm *);
 #endif