summaryrefslogtreecommitdiffstats
path: root/source/script/makeunicodecasemap.awk
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1999-12-23 01:57:43 +0000
committerJeremy Allison <jra@samba.org>1999-12-23 01:57:43 +0000
commitd7b72d4cbfb6bd1925abc7f95c1180d3d65856a5 (patch)
treed379840060ef9834e75c35d8f59381e64a2bdb13 /source/script/makeunicodecasemap.awk
parent82421e93c09790a7e38014c42f8402db5cb827e3 (diff)
downloadsamba-d7b72d4cbfb6bd1925abc7f95c1180d3d65856a5.tar.gz
samba-d7b72d4cbfb6bd1925abc7f95c1180d3d65856a5.tar.xz
samba-d7b72d4cbfb6bd1925abc7f95c1180d3d65856a5.zip
Samba now includes a full ucs2 upper to lower case (and vica versa) map table.
Jeremy.
Diffstat (limited to 'source/script/makeunicodecasemap.awk')
-rw-r--r--source/script/makeunicodecasemap.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/makeunicodecasemap.awk b/source/script/makeunicodecasemap.awk
index 4a4640da85b..8424b6c6725 100644
--- a/source/script/makeunicodecasemap.awk
+++ b/source/script/makeunicodecasemap.awk
@@ -52,7 +52,7 @@ BEGIN {
END {
while ( val < 65536 ) {
- printf("{ 0, 0x%04X, 0x%04X }, \t\t\t/* %s NOMAP */\n", val, val, strval);
+ printf("{ 0x%04X, 0x%04X, 0 }, \t\t\t/* %s NOMAP */\n", val, val, strval);
val++;
strval=sprintf("%04X", val);
}