No C99 initialisers, gcc 2.95.3 doesn't like it.
[tinc] / src / netutl.c
index cd50792..ef9a660 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: netutl.c,v 1.12.4.49 2003/07/24 12:08:15 guus Exp $
+    $Id: netutl.c,v 1.12.4.51 2003/07/30 11:50:45 guus Exp $
 */
 
 #include "system.h"
@@ -36,13 +36,11 @@ bool hostnames = false;
 */
 struct addrinfo *str2addrinfo(const char *address, const char *service, int socktype)
 {
-       struct addrinfo hint, *ai;
+       struct addrinfo *ai, hint = {0};
        int err;
 
        cp();
 
-       memset(&hint, 0, sizeof(hint));
-
        hint.ai_family = addressfamily;
        hint.ai_socktype = socktype;
 
@@ -59,14 +57,12 @@ struct addrinfo *str2addrinfo(const char *address, const char *service, int sock
 
 sockaddr_t str2sockaddr(const char *address, const char *port)
 {
-       struct addrinfo hint, *ai;
+       struct addrinfo *ai, hint = {0};
        sockaddr_t result;
        int err;
 
        cp();
 
-       memset(&hint, 0, sizeof(hint));
-
        hint.ai_family = AF_UNSPEC;
        hint.ai_flags = AI_NUMERICHOST;
        hint.ai_socktype = SOCK_STREAM;