From daa22bc46bed0a23afad8895bb2b89e7455a0a40 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Tue, 3 Mar 2009 05:22:57 +0000 Subject: 26665: Src/utils.c: fix one incorrect test in 26614. --- Src/utils.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Src') diff --git a/Src/utils.c b/Src/utils.c index 3696571bb..fbe1eb223 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -2460,7 +2460,7 @@ ztrftime(char *buf, int bufsize, char *fmt, struct tm *tm) return -1; switch (*fmt++) { case 'd': - if (strip || tm->tm_mday > 9) + if (tm->tm_mday > 9 || !strip) *buf++ = '0' + tm->tm_mday / 10; *buf++ = '0' + tm->tm_mday % 10; break; @@ -3090,6 +3090,7 @@ inittyptab(void) for (t0 = 0240; t0 != 0400; t0++) typtab[t0] = IALPHA | IALNUM | IIDENT | IUSER | IWORD; #endif + /* typtab['.'] |= IIDENT; */ /* Allow '.' in variable names - broken */ typtab['_'] = IIDENT | IUSER; typtab['-'] = typtab['.'] = IUSER; typtab[' '] |= IBLANK | INBLANK; -- cgit 1.4.1