diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-06-16 20:49:15 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-06-16 20:49:15 +0000 |
commit | 2a33e58d18f400a05aeef00ba27f2b3c12ac315c (patch) | |
tree | 566fbed5efb1ddf7b15fd07ab41a524bccd0ae43 /source3/lib | |
parent | e14d99fd0d4bc3c27fe1f38f11e281a8f78cdeb1 (diff) | |
download | samba-2a33e58d18f400a05aeef00ba27f2b3c12ac315c.tar.gz samba-2a33e58d18f400a05aeef00ba27f2b3c12ac315c.tar.bz2 samba-2a33e58d18f400a05aeef00ba27f2b3c12ac315c.zip |
charset.c: Dropped debug message to level 6.
loadparm.c: Added "time server" parameter.
nameserv.h: Added "time server" parameter.
proto.h: Added lp_time_server().
server.c: Removed incorrect | 0700 - this was a whistle specific change.
Jeremy (jallison@whistle.com).
(This used to be commit 54dcca1240ec0a7f107f8a77e0893855015f9d29)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/charset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/charset.c b/source3/lib/charset.c index a83d1133fe..f066b9a472 100644 --- a/source3/lib/charset.c +++ b/source3/lib/charset.c @@ -226,7 +226,7 @@ void charset_initialise(int client_codepage) } if(client_codepage != -1) - DEBUG(1,("charset_initialise: client code page = %d\n", client_codepage)); + DEBUG(6,("charset_initialise: client code page = %d\n", client_codepage)); /* * Known client codepages - these can be added to. @@ -245,7 +245,7 @@ void charset_initialise(int client_codepage) break; default: /* Default charset - currently 850 */ - DEBUG(1,("charset_initialise: Using default client codepage %d\n", 850)); + DEBUG(6,("charset_initialise: Using default client codepage %d\n", 850)); cp = cp_850; break; |