* gmt_mktime.c (days_in_month): Now const.
authorEzra Peisach <epeisach@mit.edu>
Sun, 17 Aug 1997 18:33:09 +0000 (18:33 +0000)
committerEzra Peisach <epeisach@mit.edu>
Sun, 17 Aug 1997 18:33:09 +0000 (18:33 +0000)
          Originally by raeburn@cygnus.com from the Kerbnet release

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

src/lib/krb5/os/ChangeLog
src/lib/krb5/os/gmt_mktime.c

index c2c6e115c35ad09688dc0a0ce31dc26eb0df2119..e860e4a8d49b4648e0cade177c15df06461fdcbe 100644 (file)
@@ -1,3 +1,8 @@
+Sat Aug 16 10:11:20 1997  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * gmt_mktime.c (days_in_month): Now const.
+         Originally by raeburn@cygnus.com from the Kerbnet release
+
 Tue Feb 25 00:29:33 1997  Richard Basch  <basch@lehman.com>
 
        * read_pwd.c: Define Windows interface for krb5_read_password
index a7051ff06c42f5c2b0a076d88a21f7d3a56f622a..1cb5c2668ccbeb2ab013db2b1431e73200a425e2 100644 (file)
@@ -18,7 +18,7 @@
 /* like mktime, this ignores tm_wday and tm_yday. */
 /* unlike mktime, this does not set them... it only passes a return value. */
 
-static days_in_month[12] = {
+static const days_in_month[12] = {
 0,                             /* jan 31 */
 31,                            /* feb 28 */
 59,                            /* mar 31 */