FS-6294 FS-6308 NetBSD support should work test and report back please.

This commit is contained in:
Brian West
2014-03-19 14:34:02 -05:00
parent b8f1a1779f
commit c4c0f38aab
8 changed files with 28 additions and 14 deletions
+1 -1
View File
@@ -384,7 +384,7 @@ static inline int switch_dtmftoi(char *s)
switch_assert(s);
if (!(r = atoi(s))) {
int l = tolower(*s);
int l = tolower((unsigned char)*s);
if (l > 96 && l < 101) {
r = l - 87;
}