]> code.citadel.org Git - citadel.git/blobdiff - webcit/fmt_date.c
Date picker is now localized to the currently selected
[citadel.git] / webcit / fmt_date.c
index ac4af4337bc64904a9882d54358f982959868464..c541b7b17ec9f029d93514d00e56d6b65df03355 100644 (file)
@@ -39,6 +39,7 @@ size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm)
 }
 
 
+
 /*
  * Format a date/time stamp for output 
  */
@@ -147,14 +148,14 @@ void fmt_time(char *buf, time_t thetime)
  * FIXME won't read asctime
  * Doesn't understand timezone, but we only should be using GMT/UTC anyway
  */
-time_t httpdate_to_timestamp(char *buf)
+time_t httpdate_to_timestamp(StrBuf *buf)
 {
        time_t t = 0;
        struct tm tt;
-       char *c;
+       const char *c;
 
        /** Skip day of week, to number */
-       for (c = buf; *c != ' '; c++)
+       for (c = ChrPtr(buf); *c != ' '; c++)
                ;
        c++;