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 | 54dcca1240ec0a7f107f8a77e0893855015f9d29 (patch) | |
tree | a3e172742eef15280b04972b8294def567e30e0f /source/lib | |
parent | d9a4ff3c908f5564bd30e78485b391dfdb7c9082 (diff) | |
download | samba-54dcca1240ec0a7f107f8a77e0893855015f9d29.tar.gz samba-54dcca1240ec0a7f107f8a77e0893855015f9d29.tar.xz samba-54dcca1240ec0a7f107f8a77e0893855015f9d29.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).
Diffstat (limited to 'source/lib')
-rw-r--r-- | source/lib/charset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/charset.c b/source/lib/charset.c index a83d1133fef..f066b9a4728 100644 --- a/source/lib/charset.c +++ b/source/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; |