From: William A. Rowe Jr Date: Sat, 3 Jan 2009 19:37:50 +0000 (+0000) Subject: revert 730949, accf_map member should never have been or be NULL X-Git-Tag: 2.3.2~231 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5cf09c2aa4be500743c8c2af8a888b44a866fa1f;p=thirdparty%2Fapache%2Fhttpd.git revert 730949, accf_map member should never have been or be NULL git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@731071 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/listen.c b/server/listen.c index 3537b2b86de..52bc3104ecb 100644 --- a/server/listen.c +++ b/server/listen.c @@ -183,7 +183,7 @@ static const char* find_accf_name(server_rec *s, const char *proto) const char* accf; core_server_config *conf = ap_get_module_config(s->module_config, &core_module); - if (!proto || !conf->accf_map) { + if (!proto) { return NULL; }