diff options
Diffstat (limited to 'src/fr-command-iso.c')
-rw-r--r-- | src/fr-command-iso.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/fr-command-iso.c b/src/fr-command-iso.c index 3be83db..ccc2333 100644 --- a/src/fr-command-iso.c +++ b/src/fr-command-iso.c @@ -47,19 +47,21 @@ mktime_from_string (char *month, char *mday, char *year) { - static const char *months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", - "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; struct tm tm = {0, }; tm.tm_isdst = -1; if (month != NULL) { + static const char *months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", + "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; int i; - for (i = 0; i < 12; i++) + + for (i = 0; i < 12; i++) { if (strcmp (months[i], month) == 0) { tm.tm_mon = i; break; } + } } tm.tm_mday = atoi (mday); tm.tm_year = atoi (year) - 1900; |