mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
Removed puts(0)
SVN revision: 936
This commit is contained in:
parent
e40036edc8
commit
b4419936c1
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.366 2004/07/07 13:21:58 midas
|
||||||
|
Removed puts(0)
|
||||||
|
|
||||||
Revision 1.365 2004/07/07 11:59:41 midas
|
Revision 1.365 2004/07/07 11:59:41 midas
|
||||||
Added $utcdate
|
Added $utcdate
|
||||||
|
|
||||||
@ -18461,7 +18464,10 @@ void server_loop(int tcp_port, int daemon)
|
|||||||
} else if (strstr(net_buffer, "OPTIONS") != NULL)
|
} else if (strstr(net_buffer, "OPTIONS") != NULL)
|
||||||
goto finished;
|
goto finished;
|
||||||
else {
|
else {
|
||||||
puts(net_buffer);
|
if (strlen(net_buffer) > 0 && verbose) {
|
||||||
|
printf("Received unknown HTTP command:\n");
|
||||||
|
puts(net_buffer);
|
||||||
|
}
|
||||||
goto finished;
|
goto finished;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user