don't force local names to lower case -- this was left over from
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Sat, 20 Mar 1993 04:20:03 +0000 (20:20 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Sat, 20 Mar 1993 04:20:03 +0000 (20:20 -0800)
the bogus alias mapping

SCCS-vsn: usr.sbin/sendmail/src/recipient.c 6.31

usr/src/usr.sbin/sendmail/src/recipient.c

index d022fa4..cdf0c06 100644 (file)
@@ -7,7 +7,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)recipient.c        6.30 (Berkeley) %G%";
+static char sccsid[] = "@(#)recipient.c        6.31 (Berkeley) %G%";
 #endif /* not lint */
 
 # include "sendmail.h"
 #endif /* not lint */
 
 # include "sendmail.h"
@@ -486,12 +486,6 @@ finduser(name, fuzzyp)
        if (tTd(29, 4))
                printf("finduser(%s): ", name);
 
        if (tTd(29, 4))
                printf("finduser(%s): ", name);
 
-       /* map upper => lower case */
-       for (p = name; *p != '\0'; p++)
-       {
-               if (isascii(*p) && isupper(*p))
-                       *p = tolower(*p);
-       }
        *fuzzyp = FALSE;
 
        /* look up this login name using fast path */
        *fuzzyp = FALSE;
 
        /* look up this login name using fast path */