Skip to content

Commit a71894a

Browse files
committed
Remove Invalid request path printf
1 parent 5cb3a36 commit a71894a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libhttpd/api.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* vim: tabstop=4 softtabstop=4 shiftwidth=4 expandtab */
12
/*
23
** Copyright (c) 2002 Hughes Technologies Pty Ltd. All rights
34
** reserved.
@@ -799,7 +800,7 @@ httpdProcessRequest(httpd * server, request * r)
799800
dirName[HTTP_MAX_URL - 1] = 0;
800801
cp = strrchr(dirName, '/');
801802
if (cp == NULL) {
802-
printf("Invalid request path '%s'\n", dirName);
803+
/* printf("Invalid request path '%s'\n", dirName); */
803804
return;
804805
}
805806
strncpy(entryName, cp + 1, HTTP_MAX_URL);

0 commit comments

Comments
 (0)