Changeset 149 for trunk/samba/source/lib/util_unistr.c
- Timestamp:
- Aug 20, 2008, 9:10:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/samba/source/lib/util_unistr.c
r133 r149 34 34 static bool lowcase_table_use_unmap; 35 35 static bool valid_table_use_unmap; 36 static bool initialized; 36 37 37 38 /** … … 60 61 SAFE_FREE(valid_table); 61 62 } 63 initialized = false; 62 64 } 63 65 … … 71 73 void load_case_tables(void) 72 74 { 73 static int initialised;74 75 char *old_locale = NULL, *saved_locale = NULL; 75 76 int i; 76 77 TALLOC_CTX *frame = NULL; 77 78 78 if (initiali sed) {79 if (initialized) { 79 80 return; 80 81 } 81 initiali sed = 1;82 initialized = true; 82 83 83 84 frame = talloc_stackframe();
Note:
See TracChangeset
for help on using the changeset viewer.