From: Martin Kraemer Date: Thu, 7 Oct 1999 21:47:36 +0000 (+0000) Subject: ap_listeners must be extern, otherwise you get multiple definitions X-Git-Tag: 1.3.10~297 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ce5086ba6878f2eb8739ce7983115f51ec72d30;p=thirdparty%2Fapache%2Fhttpd.git ap_listeners must be extern, otherwise you get multiple definitions git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83944 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/ap_listen.h b/include/ap_listen.h index 868c9f57ef3..2df13661808 100644 --- a/include/ap_listen.h +++ b/include/ap_listen.h @@ -68,7 +68,7 @@ struct ap_listen_rec { /* more stuff here, like which protocol is bound to the port */ }; -ap_listen_rec *ap_listeners; +extern ap_listen_rec *ap_listeners; void ap_listen_pre_config(void); int ap_listen_open(process_rec *process, unsigned port);