[Freeswitch-svn] [commit] r10764 - freeswitch/trunk/src
FreeSWITCH SVN
mikej at freeswitch.org
Sun Dec 14 21:12:13 PST 2008
Author: mikej
Date: Mon Dec 15 00:12:12 2008
New Revision: 10764
Log:
FSCORE-253 workaround netbsd failures
Modified:
freeswitch/trunk/src/switch_utils.c
Modified: freeswitch/trunk/src/switch_utils.c
==============================================================================
--- freeswitch/trunk/src/switch_utils.c (original)
+++ freeswitch/trunk/src/switch_utils.c Mon Dec 15 00:12:12 2008
@@ -1657,7 +1657,7 @@
#define _X 0x40
#define _B 0x80
-const char _switch_C_ctype_[1 + SWITCH_CTYPE_NUM_CHARS] = {
+const int _switch_C_ctype_[1 + SWITCH_CTYPE_NUM_CHARS] = {
0,
_C, _C, _C, _C, _C, _C, _C, _C,
_C, _C|_S, _C|_S, _C|_S, _C|_S, _C|_S, _C, _C,
@@ -1695,7 +1695,7 @@
_P, _P, _P, _P, _P, _P, _P, _P /* F8 */
};
-const char *_switch_ctype_ = _switch_C_ctype_;
+const int *_switch_ctype_ = _switch_C_ctype_;
SWITCH_DECLARE(int) switch_isalnum(int c)
{
More information about the Freeswitch-svn
mailing list