]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - worm/worm.c
Use setgid(), not setregid().
[bsdgames-darwin.git] / worm / worm.c
index 1a03ee7290adfcbdad12389a84ece607d08782a7..a78f27fb9b055f46e3cf216b1a88cf4ab49cba88 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: worm.c,v 1.18 2000/01/09 17:17:21 jsm Exp $    */
+/*     $NetBSD: worm.c,v 1.19 2000/05/08 07:56:06 mycroft Exp $        */
 
 /*
  * Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
 #if 0
 static char sccsid[] = "@(#)worm.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: worm.c,v 1.18 2000/01/09 17:17:21 jsm Exp $");
+__RCSID("$NetBSD: worm.c,v 1.19 2000/05/08 07:56:06 mycroft Exp $");
 #endif
 #endif /* not lint */
 
@@ -102,7 +102,7 @@ main(argc, argv)
 {
 
        /* Revoke setgid privileges */
-       setregid(getgid(), getgid());
+       setgid(getgid());
 
        if (argc == 2)
                start_len = atoi(argv[1]);