Changeset 114


Ignore:
Timestamp:
Jan 24, 2008, 9:33:27 AM (18 years ago)
Author:
Paul Smedley
Message:

Default to SYSTEM codepage for DOS sessions too

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/param/loadparm.c

    r109 r114  
    14671467#endif
    14681468
     1469#ifndef __OS2__
    14691470        /* Use codepage 850 as a default for the dos character set */
    14701471        string_set(&Globals.dos_charset, DEFAULT_DOS_CHARSET);
    1471 
     1472#else
     1473        /* On OS/2, using UTF8 causes problems with display of foreign characters - default to SYSTEM codepage */
     1474        string_set(&Globals.dos_charset, "SYSTEM");
     1475#endif
    14721476        /*
    14731477         * Allow the default PASSWD_CHAT to be overridden in local.h.
Note: See TracChangeset for help on using the changeset viewer.