]> sourceware.org Git - glibc.git/commitdiff
* nscd/nscd_gethst_r.c: Minor cleanups.
authorUlrich Drepper <drepper@redhat.com>
Sat, 13 Jan 2007 07:30:26 +0000 (07:30 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 13 Jan 2007 07:30:26 +0000 (07:30 +0000)
ChangeLog
nscd/nscd_gethst_r.c

index 013dc58738edc23d8c2d9a56755c5465f8678061..9d35ac4dae8fc21a4cf8e469a58aaeeef73239fe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2007-01-12  Ulrich Drepper  <drepper@redhat.com>
 
+       * nscd/nscd_gethst_r.c: Minor cleanups.
+
        * nscd/connections.c (handle_request): Check selinux permissions
        for all non-admin commands.
 
index 516977bcc4997b25aff54a7b320a31d7c38699a1..e83e4823ea15d011e1f1239b97baf06f59bb915c 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998-2005, 2006 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2005, 2006, 2007 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
    02111-1307 USA.  */
 
-#include <assert.h>
 #include <errno.h>
-#include <netdb.h>
 #include <resolv.h>
-#include <stdint.h>
 #include <stdio.h>
-#include <stdlib.h>
 #include <string.h>
-#include <unistd.h>
 #include <arpa/nameser.h>
 #include <not-cancel.h>
 
@@ -175,7 +170,7 @@ nscd_gethst_r (const char *key, size_t keylen, request_type type,
       if (sock == -1)
        {
          __nss_not_use_nscd_hosts = 1;
-         goto out;;
+         goto out;
        }
 
       hst_resp = &hst_resp_mem;
@@ -193,7 +188,6 @@ nscd_gethst_r (const char *key, size_t keylen, request_type type,
 
   if (hst_resp->found == 1)
     {
-      struct iovec vec[4];
       char *cp = buffer;
       uintptr_t align1;
       uintptr_t align2;
@@ -253,6 +247,8 @@ nscd_gethst_r (const char *key, size_t keylen, request_type type,
 
       if (h_name == NULL)
        {
+         struct iovec vec[4];
+
          vec[0].iov_base = resultbuf->h_name;
          vec[0].iov_len = hst_resp->h_name_len;
          total_len = hst_resp->h_name_len;
This page took 0.049099 seconds and 5 git commands to generate.