CVSROOT: /cvs Module name: src Changes by: r...@cvs.openbsd.org 2015/07/15 11:52:23
Modified files: usr.sbin/httpd : server_http.c Log message: Simplify the error path of the previous commit: by using ret = -1 by default and only setting it to 0 on success, we don't have to set it in each error case. While here, also remove two superfluous NULL checks (as pointed out by semarie). OK semarie@