Fixed compiler warning

SVN revision: 1013
This commit is contained in:
Stefan Ritt 2004-08-04 10:32:29 +00:00
parent 9579009f98
commit 500b3d9ef0

View File

@ -6,6 +6,9 @@
Contents: Web server program for Electronic Logbook ELOG
$Log$
Revision 1.429 2004/08/04 10:32:29 midas
Fixed compiler warning
Revision 1.428 2004/08/04 10:30:36 midas
Fixed password file mirror problems
@ -8630,6 +8633,7 @@ void adjust_crlf(char *buffer, int bufsize)
#ifdef OS_UNIX
/* convert \r\n -> \n */
if (bufsize);
p = buffer;
while ((p = strstr(p, "\r\n")) != NULL) {
strcpy(p, p + 1);