From d81c89d99f42ad5285f9e61e85c424a4f2d7fd74 Mon Sep 17 00:00:00 2001 From: zacheiss Date: Fri, 14 Sep 2001 23:17:50 +0000 Subject: [PATCH] Lower case locker names and aliases. --- gen/www.pc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gen/www.pc b/gen/www.pc index 737e8486..339eb30a 100644 --- a/gen/www.pc +++ b/gen/www.pc @@ -190,6 +190,8 @@ void filsys(FILE *out) if (!*strtrim(path)) continue; + for (c = label; *c; c++) + *c = tolower(*c); fprintf(out, "%s:%s\n", label, path); EXEC SQL OPEN alias_cursor; @@ -201,6 +203,8 @@ void filsys(FILE *out) if (!*strtrim(alias)) continue; + for (c = alias; *c; c++) + *c = tolower(*c); fprintf(out, "%s:%s\n", alias, path); } EXEC SQL CLOSE alias_cursor; -- 2.45.2