]> arthur.barton.de Git - netatalk.git/blobdiff - libatalk/nbp/nbp_rgstr.c
Update NEWS
[netatalk.git] / libatalk / nbp / nbp_rgstr.c
index 5fa024925491a138431eb7a579f6535502f4b3af..d09e8669ebdd19fb95d263737bccf5d789c5a829 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: nbp_rgstr.c,v 1.3 2001-06-29 14:14:46 rufustfirefly Exp $
+ * $Id: nbp_rgstr.c,v 1.6 2009-10-14 02:24:05 didg Exp $
  *
  * Copyright (c) 1990,1993 Regents of The University of Michigan.
  * All Rights Reserved. See COPYRIGHT.
 #endif /* HAVE_CONFIG_H */
 
 #include <string.h>
+#include <errno.h>
+#include <signal.h>
+
 #include <sys/types.h>
 #include <sys/param.h>
 #include <sys/socket.h>
-#include <sys/signal.h>
 #include <sys/time.h>
-#include <errno.h>
 
 #include <netatalk/at.h>
 #include <netatalk/endian.h>
@@ -33,9 +34,7 @@
 #define SOCKLEN_T unsigned int
 #endif /* ! SOCKLEN_T */
 
-int nbp_rgstr( sat, obj, type, zone )
-    struct sockaddr_at *sat;
-    const char         *obj, *type, *zone;
+int nbp_rgstr( struct sockaddr_at *sat, const char *obj, const char *type, const char *zone)
 {
     struct sockaddr_at to;
     struct nbpnve      nn;
@@ -120,7 +119,7 @@ int nbp_rgstr( sat, obj, type, zone )
     FD_SET( s, &readfd );
     timeout.tv_sec = 2;
     timeout.tv_usec = 0;
-    if (( cc = select( s + 1, &readfd, 0, 0, &timeout )) < 0 ) {
+    if (( cc = select( s + 1, &readfd, NULL, NULL, &timeout )) < 0 ) {
         goto register_err;
     }
     if ( cc == 0 ) {