Revert.
[gnulib.git] / lib / inet_ntop.c
index 34574be..537b59f 100644 (file)
@@ -1,5 +1,6 @@
 /* inet_ntop.c -- convert IPv4 and IPv6 addresses from binary to text form
-   Copyright (c) 2005, 2006  Free Software Foundation, Inc.
+
+   Copyright (C) 2005, 2006  Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -32,9 +33,7 @@
  * SOFTWARE.
  */
 
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
+#include <config.h>
 
 /* Specification.  */
 #include "inet_ntop.h"
@@ -76,8 +75,10 @@ inet_ntop (int af, const void *restrict src,
 {
   switch (af)
     {
+#if HAVE_IPV4
     case AF_INET:
       return (inet_ntop4 (src, dst, cnt));
+#endif
 
 #if HAVE_IPV6
     case AF_INET6: