From 7c51c5ddf31cc990610d07edb1cbe7265288e2c3 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 23 Dec 1999 01:57:43 +0000 Subject: Samba now includes a full ucs2 upper to lower case (and vica versa) map table. Jeremy. (This used to be commit d7b72d4cbfb6bd1925abc7f95c1180d3d65856a5) --- source3/script/makeunicodecasemap.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/script/makeunicodecasemap.awk') diff --git a/source3/script/makeunicodecasemap.awk b/source3/script/makeunicodecasemap.awk index 4a4640da85b..8424b6c6725 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); } -- cgit