From: Christophe Jaillet Date: Mon, 31 Aug 2015 20:37:44 +0000 (+0000) Subject: Fix some spurious ident spotted by sparse X-Git-Tag: 2.5.0-alpha~2887 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85082b028ded204e1582facb031adb280b9e23ef;p=apache Fix some spurious ident spotted by sparse git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1700334 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_ftp.c b/modules/proxy/mod_proxy_ftp.c index cfd7f936f4..934cb2b8e6 100644 --- a/modules/proxy/mod_proxy_ftp.c +++ b/modules/proxy/mod_proxy_ftp.c @@ -172,7 +172,7 @@ static int ftp_check_globbingchars(const char *path) { for ( ; *path; ++path) { if (*path == '\\') - ++path; + ++path; if (*path != '\0' && strchr(FTP_GLOBBING_CHARS, *path) != NULL) return TRUE; }