More conversion of date/time strings to strftime-based functions.
[citadel.git] / webcit / summary.c
index 0c309364fc7d741c133d42d577f43f92b273a3b8..b7b9084b59467d1fe717aad59bcfa7ffd3744ce1 100644 (file)
@@ -19,7 +19,7 @@ void output_date(void) {
        time(&now);
        localtime_r(&now, &tm);
 
-       strftime_l(buf, 32, "%A, %x", &tm, wc_locales[WC->selected_language]);
+       wc_strftime(buf, 32, "%A, %x", &tm);
        wprintf("%s", buf);
 }