kill useless code
authorderaadt <deraadt@openbsd.org>
Tue, 3 Sep 1996 09:35:31 +0000 (09:35 +0000)
committerderaadt <deraadt@openbsd.org>
Tue, 3 Sep 1996 09:35:31 +0000 (09:35 +0000)
bin/rcp/util.c

index 1aac3b8..aebe3b2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: util.c,v 1.2 1996/06/23 14:20:57 deraadt Exp $        */
+/*     $OpenBSD: util.c,v 1.3 1996/09/03 09:35:31 deraadt Exp $        */
 /*     $NetBSD: util.c,v 1.2 1995/03/21 08:19:08 cgd Exp $     */
 
 /*-
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)util.c     8.2 (Berkeley) 4/2/94";
 #else
-static char rcsid[] = "$OpenBSD: util.c,v 1.2 1996/06/23 14:20:57 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: util.c,v 1.3 1996/09/03 09:35:31 deraadt Exp $";
 #endif
 #endif /* not lint */
 
@@ -62,9 +62,6 @@ char *
 colon(cp)
        char *cp;
 {
-       if (*cp == ':')         /* Leading colon is part of file name. */
-               return (0);
-
        for (; *cp; ++cp) {
                if (*cp == ':')
                        return (cp);
@@ -116,7 +113,7 @@ susystem(s, userid)
        char *s;
 {
        sig_t istat, qstat;
-       int status, w;
+       int status;
        pid_t pid;
 
        pid = vfork();