From 96d60bcabbb807b78af0bd8c6e843a1f1ac55670 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Wed, 5 Jul 2017 15:06:24 +0200 Subject: [PATCH] Remove old debug code. Not sure why it was there. --- match.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/match.c b/match.c index a96ee1b..6d736a7 100644 --- a/match.c +++ b/match.c @@ -20,7 +20,6 @@ int matchNoCase(char const *sorig, char const *p) int matchBody(char const *sorig, char const *p, int nocase) { - static int dummy = 0; /* Algorithm: Word separator: *. End-of-string @@ -56,11 +55,6 @@ int matchBody(char const *sorig, char const *p, int nocase) char const *s = sorig; int escaped = 0; - if (strstr(p, "WS-0000")) { - if (strstr(s, "ws_ftp_pro.html")) { - dummy = 1; - } - } while (1) { char const *word; int wordLen;