CVSROOT: /cvs Module name: src Changes by: [email protected] 2016/10/07 01:37:29
Modified files:
usr.sbin/httpd : server_fcgi.c
Log message:
The strchr() call either returns a NULL pointer, on which the code will
break out of the loop, or a pointer to ':'. Thus the extra check for
':' is unnecessary and can be removed.
ok jung@
