You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jk...@apache.org on 2014/07/08 11:03:03 UTC

svn commit: r1608694 - /httpd/httpd/trunk/server/listen.c

Author: jkaluza
Date: Tue Jul  8 09:03:02 2014
New Revision: 1608694

URL: http://svn.apache.org/r1608694
Log:
Follow up r1608686, pass process to alloc_systemd_listener.

Modified:
    httpd/httpd/trunk/server/listen.c

Modified: httpd/httpd/trunk/server/listen.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/listen.c?rev=1608694&r1=1608693&r2=1608694&view=diff
==============================================================================
--- httpd/httpd/trunk/server/listen.c (original)
+++ httpd/httpd/trunk/server/listen.c Tue Jul  8 09:03:02 2014
@@ -776,7 +776,7 @@ AP_DECLARE(apr_status_t) ap_duplicate_li
             if (use_systemd) {
                 int thesock;
                 apr_os_sock_get(&thesock, lr->sd);
-                if ((stat = alloc_systemd_listener(p, thesock, &duplr))
+                if ((stat = alloc_systemd_listener(s->process, thesock, &duplr))
                     != APR_SUCCESS) {
                     return stat;
                 }