diff options
author | Jeremy Allison <jra@samba.org> | 1999-12-23 01:57:43 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1999-12-23 01:57:43 +0000 |
commit | 7c51c5ddf31cc990610d07edb1cbe7265288e2c3 (patch) | |
tree | e0a0592582f6661c8df0840e81ccc40d9a1b6475 /source3/script | |
parent | 63ca6eaff0f9451aeb8b4f14e0e6767ff32c06b7 (diff) | |
download | samba-7c51c5ddf31cc990610d07edb1cbe7265288e2c3.tar.gz samba-7c51c5ddf31cc990610d07edb1cbe7265288e2c3.tar.bz2 samba-7c51c5ddf31cc990610d07edb1cbe7265288e2c3.zip |
Samba now includes a full ucs2 upper to lower case (and vica versa) map table.
Jeremy.
(This used to be commit d7b72d4cbfb6bd1925abc7f95c1180d3d65856a5)
Diffstat (limited to 'source3/script')
-rw-r--r-- | source3/script/makeunicodecasemap.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/makeunicodecasemap.awk b/source3/script/makeunicodecasemap.awk index 4a4640da85..8424b6c672 100644 --- a/source3/script/makeunicodecasemap.awk +++ b/source3/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); } |