Files
pkgsrc-ng/comms/fidogate/patches/patch-bd
2013-09-26 17:14:40 +02:00

14 lines
363 B
Plaintext

$NetBSD: patch-bd,v 1.2 2009/12/18 01:09:23 abs Exp $
--- src/gate/ftn2rfc.c.orig 2004-08-22 20:19:12.000000000 +0000
+++ src/gate/ftn2rfc.c
@@ -272,7 +272,7 @@ int check_valid_domain(char *s)
return FALSE;
while(*s)
{
- if(!isalnum(*s) && *s!='-' && *s!='.')
+ if(!isalnum((unsigned char)*s) && *s!='-' && *s!='.')
return FALSE;
s++;
}