]> Zhao Yanbai Git Server - minix.git/commitdiff
Turn off debug in getsockname.c
authorBen Gras <ben@minix3.org>
Wed, 15 Feb 2006 14:16:06 +0000 (14:16 +0000)
committerBen Gras <ben@minix3.org>
Wed, 15 Feb 2006 14:16:06 +0000 (14:16 +0000)
allow NULL for setgroups argument

lib/ip/getsockname.c
lib/other/setgroups.c

index 034b247e393a4f2a9c9ce1b833375dee317013fc..c09604a0b96490a393cc26578159831bde993176 100644 (file)
@@ -21,7 +21,7 @@
 #include <net/gen/udp_io.h>
 
 
-#define DEBUG 1
+#define DEBUG 0
 
 /*
    getsockname...
index 8708c9f6ef382d8cad3375417f207e31e79fd8e2..25107ffe46f409e8ab6edcba0d721878c4621387 100644 (file)
@@ -9,7 +9,7 @@ setgroups.c
 
 int setgroups(int ngroups, const gid_t *gidset)
 {
-       if(!gidset || ngroups > 1) {
+       if(ngroups > 1) {
                /* Supplementary groups not implemented */
                errno= EINVAL;
                return -1;