Fix some spurious ident spotted by sparse
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 31 Aug 2015 20:37:44 +0000 (20:37 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 31 Aug 2015 20:37:44 +0000 (20:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1700334 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_ftp.c

index cfd7f936f4766fa899da082645ae028950449ce7..934cb2b8e60c62e8a87f65522aec3e3057ed9cf7 100644 (file)
@@ -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;
     }