summaryrefslogtreecommitdiffstats
path: root/source/lib/charset.c
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>1998-08-03 22:10:53 +0000
committerChristopher R. Hertel <crh@samba.org>1998-08-03 22:10:53 +0000
commit3e7e5fad378cf144927d9f2ffc82f80e150d44ab (patch)
tree3443aa5d803602e85b3c518edba1016f4aaa880d /source/lib/charset.c
parenta0748c3f53974483680ebe2ea4f556ece8d7fa43 (diff)
downloadsamba-3e7e5fad378cf144927d9f2ffc82f80e150d44ab.tar.gz
samba-3e7e5fad378cf144927d9f2ffc82f80e150d44ab.tar.xz
samba-3e7e5fad378cf144927d9f2ffc82f80e150d44ab.zip
More formatting changes. Mostly converted some DEBUG() calls to DEBUGADD()
so that we wouldn't get too many timestamps. Chris -)-----
Diffstat (limited to 'source/lib/charset.c')
-rw-r--r--source/lib/charset.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/lib/charset.c b/source/lib/charset.c
index db331af115d..5e9481f9bbf 100644
--- a/source/lib/charset.c
+++ b/source/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) */