From 4f7cf022b6963985a75c5a00ef59c7168551b225 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Tue, 15 Jul 2008 15:23:10 +0000 Subject: users/13036: "." is a valid character in a user name --- Src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src/utils.c') diff --git a/Src/utils.c b/Src/utils.c index 7195fe223..154ca8627 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -2981,7 +2981,7 @@ inittyptab(void) typtab[t0] = IALPHA | IALNUM | IIDENT | IUSER | IWORD; #endif typtab['_'] = IIDENT | IUSER; - typtab['-'] = IUSER; + typtab['-'] = typtab['.'] = IUSER; typtab[' '] |= IBLANK | INBLANK; typtab['\t'] |= IBLANK | INBLANK; typtab['\n'] |= INBLANK; -- cgit 1.4.1