From 3ce369ab4e3e805a69aab0d2748a936a893505ba Mon Sep 17 00:00:00 2001 From: mar Date: Tue, 6 Jul 1993 12:01:38 +0000 Subject: [PATCH] removed period from list of illegal characters --- gen/mailhub.dc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen/mailhub.dc b/gen/mailhub.dc index 4adae891..2d00e65d 100644 --- a/gen/mailhub.dc +++ b/gen/mailhub.dc @@ -438,12 +438,12 @@ int copy; } -/* Illegal chars: ! " % ( ) , . / : ; < = > @ [ \ ] ^ { | } */ +/* Illegal chars: ! " % ( ) , / : ; < = > @ [ \ ] ^ { | } */ static int illegalchars[] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* ^@ - ^O */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* ^P - ^_ */ - 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, /* SPACE - / */ + 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, /* SPACE - / */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, /* 0 - ? */ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* @ - O */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, /* P - _ */ -- 2.45.2