Changeset 236 for branches/samba-3.0/source/param/loadparm.c
- Timestamp:
- May 29, 2009, 8:04:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/param/loadparm.c
r165 r236 1465 1465 string_set(&Globals.unix_charset, DEFAULT_UNIX_CHARSET); 1466 1466 #else 1467 /* On OS/2, using UTF8 causes problems with display of foreign characters - default to SYSTEM codepage */ 1468 string_set(&Globals.unix_charset, "SYSTEM"); 1467 /* On OS/2, using UTF8 causes problems with display of foreign 1468 characters - default to IBM-850 codepage */ 1469 string_set(&Globals.unix_charset, "IBM-850"); 1469 1470 #endif 1470 1471 … … 1472 1473 /* If the system supports nl_langinfo(), try to grab the value 1473 1474 from the user's locale */ 1475 #ifndef __OS2__ 1476 /* this does somehow not work on OS/2 */ 1474 1477 string_set(&Globals.display_charset, "LOCALE"); 1478 #else 1479 /* On OS/2, using UTF8 causes problems with display of foreign 1480 characters - default to IBM-850 codepage */ 1481 string_set(&Globals.display_charset, "IBM-850"); 1482 #endif 1483 1475 1484 #else 1476 1485 string_set(&Globals.display_charset, DEFAULT_DISPLAY_CHARSET); … … 1481 1490 string_set(&Globals.dos_charset, DEFAULT_DOS_CHARSET); 1482 1491 #else 1483 /* On OS/2, using UTF8 causes problems with display of foreign characters - default to SYSTEM codepage */ 1484 string_set(&Globals.dos_charset, "SYSTEM"); 1492 /* On OS/2, using UTF8 causes problems with display of foreign 1493 characters - default to IBM-850 codepage */ 1494 string_set(&Globals.dos_charset, "IBM-850"); 1485 1495 #endif 1486 1496 /*
Note:
See TracChangeset
for help on using the changeset viewer.