mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
ITS#4724 fix _uccase_map parameters
This commit is contained in:
parent
71bcd4a4b6
commit
29fbd00272
@ -1409,10 +1409,10 @@ write_cdata(char *opath)
|
||||
|
||||
#if HARDCODE_DATA
|
||||
fprintf(out, PREF "ac_uint4 _uccase_size = %ld;\n\n",
|
||||
(long) (upper_used + lower_used + title_used));
|
||||
(long) (upper_used + lower_used + title_used)*3);
|
||||
|
||||
fprintf(out, PREF "ac_uint2 _uccase_len[2] = {%ld, %ld};\n\n",
|
||||
(long) upper_used, (long) lower_used);
|
||||
(long) upper_used*3, (long) lower_used*3);
|
||||
fprintf(out, PREF "ac_uint4 _uccase_map[] = {");
|
||||
|
||||
if (upper_used > 0)
|
||||
|
@ -1493,9 +1493,9 @@ static const ac_uint4 _ucprop_ranges[] = {
|
||||
0x0000fe70, 0x0000fe74, 0x0000fe76, 0x0000fefc
|
||||
};
|
||||
|
||||
static const ac_uint4 _uccase_size = 1504;
|
||||
static const ac_uint4 _uccase_size = 4512;
|
||||
|
||||
static const ac_uint2 _uccase_len[2] = {745, 755};
|
||||
static const ac_uint2 _uccase_len[2] = {2235, 2265};
|
||||
|
||||
static const ac_uint4 _uccase_map[] = {
|
||||
0x00000041, 0x00000061, 0x00000041,
|
||||
|
Loading…
Reference in New Issue
Block a user