mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
Quiet some warnings.
- 1 'suggest parentheses around assignment used as truth value' - a few "subscript has type `char'" git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84519 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -222,7 +222,7 @@ static int get_path_info(request_rec *r)
|
||||
char *p;
|
||||
int iCount=0;
|
||||
p = path;
|
||||
while (p = strchr(p,'/')) {
|
||||
while ((p = strchr(p,'/')) != NULL) {
|
||||
p++;
|
||||
iCount++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user