summaryrefslogtreecommitdiff
path: root/Src/utils.c
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2009-03-03 05:22:57 +0000
committerBart Schaefer <barts@users.sourceforge.net>2009-03-03 05:22:57 +0000
commitdaa22bc46bed0a23afad8895bb2b89e7455a0a40 (patch)
treeaeb7bdba24d67cf0b21eb2f21145b46b3066f930 /Src/utils.c
parent4dbe63360d153a5594c676d5f68db36c1e976a40 (diff)
downloadzsh-daa22bc46bed0a23afad8895bb2b89e7455a0a40.tar.gz
zsh-daa22bc46bed0a23afad8895bb2b89e7455a0a40.zip
26665: Src/utils.c: fix one incorrect test in 26614.
Diffstat (limited to 'Src/utils.c')
-rw-r--r--Src/utils.c3
1 files changed, 2 insertions, 1 deletions
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;