From: Lars Ingebrigtsen Date: Sat, 30 Jan 2016 00:33:30 +0000 (+0100) Subject: Further make_network_process clean up X-Git-Tag: emacs-26.0.90~2520^2~63 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=860303cc4d2b783dfbac75d0ebe2f68703c09946;p=emacs.git Further make_network_process clean up * process.c (Fmake_network_process): Remove setting of unused family variable. --- diff --git a/src/process.c b/src/process.c index 88441c91de6..e40d7a46267 100644 --- a/src/process.c +++ b/src/process.c @@ -3691,7 +3691,6 @@ usage: (make-network-process &rest ARGS) */) (lres->ai_addr, lres->ai_addrlen), ip_addresses); ai_protocol = lres->ai_protocol; - family = lres->ai_family; } ip_addresses = Fnreverse (ip_addresses); @@ -3743,7 +3742,6 @@ usage: (make-network-process &rest ARGS) */) ip_addresses = Ncons (make_number (host_info_ptr->h_addr, host_info_ptr->h_length), Qnil); - family = host_info_ptr->h_addrtype; } else /* Attempt to interpret host as numeric inet address. */