File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
- /*
1
+ /* vim: tabstop=4 softtabstop=4 shiftwidth=4 expandtab
2
2
** Copyright (c) 2002 Hughes Technologies Pty Ltd. All rights
3
3
** reserved.
4
4
**
@@ -427,9 +427,6 @@ httpdReadRequest(httpd * server, request * r)
427
427
** End of headers. Continue if there's
428
428
** data to read
429
429
*/
430
- if (r -> request .contentLength == 0 )
431
- break ;
432
- inHeaders = 0 ;
433
430
break ;
434
431
}
435
432
@@ -799,7 +796,7 @@ httpdProcessRequest(httpd * server, request * r)
799
796
dirName [HTTP_MAX_URL - 1 ] = 0 ;
800
797
cp = strrchr (dirName , '/' );
801
798
if (cp == NULL ) {
802
- printf ("Invalid request path '%s'\n" , dirName );
799
+ /* printf("Invalid request path '%s'\n", dirName); */
803
800
return ;
804
801
}
805
802
strncpy (entryName , cp + 1 , HTTP_MAX_URL );
You can’t perform that action at this time.
0 commit comments