Changeset 366 for branches/samba-3.0/source/lib
- Timestamp:
- Jan 12, 2010, 7:38:34 PM (16 years ago)
- Location:
- branches/samba-3.0/source/lib
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/lib/interface.c
r286 r366 186 186 /* probe the kernel for interfaces */ 187 187 total_probed = get_interfaces(ifaces, MAX_INTERFACES); 188 DEBUG(2, (" Anzahl interfaces %i", total_probed));188 DEBUG(2, ("interfaces added %i\n", total_probed)); 189 189 190 190 if (total_probed > 0) { -
branches/samba-3.0/source/lib/os2ea.c
r363 r366 382 382 if (pfea->oNextEntryOffset > 0x10000) 383 383 { 384 //DEBUG(0, ("Broken Extended Attributes detected for: %s:%d\n", path ? path : "null", file));385 DEBUG(0, ("Broken Extended Attributes detected for: %s:%d, Last EA:%s\n", path ? path : "null", file, pfea->szName));384 DEBUG(0, ("Broken Extended Attributes detected for: %s:%d\n", path ? path : "null", file)); 385 // DEBUG(0, ("Broken Extended Attributes detected for: %s:%d, Last EA:%s\n", path ? path : "null", file, pfea->szName)); 386 386 break; 387 387 } -
branches/samba-3.0/source/lib/util_unistr.c
r1 r366 96 96 0x20000); 97 97 lowcase_table_use_unmap = ( lowcase_table != NULL ); 98 98 99 99 100 #ifdef HAVE_SETLOCALE … … 113 114 not available */ 114 115 if (!upcase_table) { 116 #ifdef __OS2__ 117 DEBUG(1,("could not load %s",lib_path("upcase.dat"))); 118 #endif 115 119 DEBUG(1,("creating lame upcase table\n")); 120 116 121 upcase_table = (smb_ucs2_t *)SMB_MALLOC(0x20000); 117 122 for (i=0;i<0x10000;i++) { … … 128 133 129 134 if (!lowcase_table) { 135 #ifdef __OS2__ 136 DEBUG(1,("could not load %s\n",lib_path("lowcase.dat"))); 137 #endif 130 138 DEBUG(1,("creating lame lowcase table\n")); 139 131 140 lowcase_table = (smb_ucs2_t *)SMB_MALLOC(0x20000); 132 141 for (i=0;i<0x10000;i++) { … … 248 257 /* use free rather than unmap */ 249 258 valid_table_use_unmap = False; 250 251 DEBUG(2,("creating default valid table\n")); 259 #ifdef __OS2__ 260 DEBUG(1,("could not load %s\n",lib_path("valid.dat"))); 261 #endif 262 DEBUG(1,("creating default valid table\n")); 263 252 264 valid_table = (uint8 *)SMB_MALLOC(0x10000); 253 265 for (i=0;i<128;i++) {
Note:
See TracChangeset
for help on using the changeset viewer.