* two more unneccesary todos..
[citadel.git] / webcit / fmt_date.c
index 2bd49af452e16e3c28dc874456c02e5f97d08bf6..2b6ec20360e44a245d8cb43a1b55e156a3672f5a 100644 (file)
@@ -31,7 +31,7 @@ size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm)
        if (wc_locales[WC->selected_language] == NULL) {
                return strftime(s, max, format, tm);
        }
-       else { /* TODO: this gives empty strings on debian. */
+       else {
                return strftime_l(s, max, format, tm, wc_locales[WC->selected_language]);
        }
 #else