diff options
author | Christopher R. Hertel <crh@samba.org> | 1998-08-03 22:10:53 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1998-08-03 22:10:53 +0000 |
commit | 31c09de03c656b7309888dbbc5240c31ed81537e (patch) | |
tree | 2978f768efe276031d3f9a9ea8aa2545d4f47ca6 /source3/lib | |
parent | 7448091da6ee11709b8e5117ff6810515567f88a (diff) | |
download | samba-31c09de03c656b7309888dbbc5240c31ed81537e.tar.gz samba-31c09de03c656b7309888dbbc5240c31ed81537e.tar.bz2 samba-31c09de03c656b7309888dbbc5240c31ed81537e.zip |
More formatting changes. Mostly converted some DEBUG() calls to DEBUGADD()
so that we wouldn't get too many timestamps.
Chris -)-----
(This used to be commit 3e7e5fad378cf144927d9f2ffc82f80e150d44ab)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/charset.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/lib/charset.c b/source3/lib/charset.c index db331af115..5e9481f9bb 100644 --- a/source3/lib/charset.c +++ b/source3/lib/charset.c @@ -127,9 +127,10 @@ static void add_dos_char(int lower, BOOL map_lower_to_upper, { lower &= 0xff; upper &= 0xff; - DEBUG(6,("Adding chars 0x%x 0x%x (l->u = %s) (u->l = %s)\n",lower,upper, - map_lower_to_upper ? "True" : "False", - map_upper_to_lower ? "True" : "False")); + DEBUGADD( 6, ( "Adding chars 0x%x 0x%x (l->u = %s) (u->l = %s)\n", + lower, upper, + map_lower_to_upper ? "True" : "False", + map_upper_to_lower ? "True" : "False" ) ); if (lower) dos_char_map[lower] = 1; if (upper) dos_char_map[upper] = 1; lower_char_map[lower] = (char)lower; /* Define tolower(lower) */ |