ossp-pkg/l2/l2_ut_level.c 1.8 -> 1.9
--- l2_ut_level.c 2002/07/30 19:08:25 1.8
+++ l2_ut_level.c 2003/01/06 11:41:52 1.9
@@ -1,9 +1,10 @@
/*
-** OSSP l2 - Logging Library
-** Copyright (c) 2001-2002 The OSSP Project (http://www.ossp.org/)
-** Copyright (c) 2001-2002 Cable & Wireless Deutschland (http://www.cw.com/de/)
+** OSSP l2 - Flexible Logging
+** Copyright (c) 2001-2003 Cable & Wireless Deutschland GmbH
+** Copyright (c) 2001-2003 The OSSP Project (http://www.ossp.org/)
+** Copyright (c) 2001-2003 Ralf S. Engelschall <rse@engelschall.com>
**
-** This file is part of OSSP L2, a flexible logging library which
+** This file is part of OSSP l2, a flexible logging library which
** can be found at http://www.ossp.org/pkg/lib/l2/.
**
** Permission to use, copy, modify, and distribute this software for
@@ -77,7 +78,7 @@
}
/* remove trailing comma */
if ((maxlen-len) > 0)
- string[(maxlen-len)-1] = '\0';
+ string[(maxlen-len)-1] = '\0';
return L2_OK;
}
@@ -90,7 +91,7 @@
hv = 0;
while (cpB < cpE) {
nibble = tolower((unsigned int)(*cpB++));
- if (isdigit(nibble))
+ if (isdigit(nibble))
nibble = nibble - '0';
else
nibble = nibble - 'a';
|
|