about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTFinger.c
diff options
context:
space:
mode:
Diffstat (limited to 'WWW/Library/Implementation/HTFinger.c')
-rw-r--r--WWW/Library/Implementation/HTFinger.c28
1 files changed, 16 insertions, 12 deletions
diff --git a/WWW/Library/Implementation/HTFinger.c b/WWW/Library/Implementation/HTFinger.c
index db9dc3dc..d00b57cb 100644
--- a/WWW/Library/Implementation/HTFinger.c
+++ b/WWW/Library/Implementation/HTFinger.c
@@ -212,18 +212,22 @@ PRIVATE int response ARGS5(
 	     */
 	    p = l = line;
 	    while (*l) {
-		if (strncmp (l, "news:", 5) &&
-		    strncmp (l, "snews://", 8) &&
-		    strncmp (l, "nntp://", 7) &&
-		    strncmp (l, "ftp://", 6) &&
-		    strncmp (l, "file:/", 6) &&
-		    strncmp (l, "finger://", 9) &&
-		    strncmp (l, "http://", 7) &&
-		    strncmp (l, "https://", 8) &&
-		    strncmp (l, "wais://", 7) &&
-		    strncmp (l, "mailto:", 7) &&
-		    strncmp (l, "cso://", 6) &&
-		    strncmp (l, "gopher://", 9)) 
+		if (strncmp(l, "news:", 5) &&
+		    strncmp(l, "snews://", 8) &&
+		    strncmp(l, "nntp://", 7) &&
+		    strncmp(l, "snewspost:", 10) &&
+		    strncmp(l, "snewsreply:", 11) &&
+		    strncmp(l, "newspost:", 9) &&
+		    strncmp(l, "newsreply:", 10) &&
+		    strncmp(l, "ftp://", 6) &&
+		    strncmp(l, "file:/", 6) &&
+		    strncmp(l, "finger://", 9) &&
+		    strncmp(l, "http://", 7) &&
+		    strncmp(l, "https://", 8) &&
+		    strncmp(l, "wais://", 7) &&
+		    strncmp(l, "mailto:", 7) &&
+		    strncmp(l, "cso://", 6) &&
+		    strncmp(l, "gopher://", 9)) 
 		    PUTC(*l++);
 		else {
 		    StrAllocCopy(href, l);