summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-11-24 04:18:21 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-11-24 04:18:21 +0000
commit7d85e835ae617750e614b72bd609076102f39522 (patch)
treee1ebe4acad7f93c4396cdefab43092884214ec73 /distrib
parentb0f76f26695b0b23bc458cd46fe6a64a00ebc8d7 (diff)
Remove errant 'continue' statement that breaks absolute paths;
paulc@passtheaardvark.com
Diffstat (limited to 'distrib')
-rw-r--r--distrib/crunch/crunchgen/crunchgen.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/distrib/crunch/crunchgen/crunchgen.c b/distrib/crunch/crunchgen/crunchgen.c
index ead9e5b2cbd..621c976bbf7 100644
--- a/distrib/crunch/crunchgen/crunchgen.c
+++ b/distrib/crunch/crunchgen/crunchgen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: crunchgen.c,v 1.17 2000/07/09 19:20:40 marc Exp $ */
+/* $OpenBSD: crunchgen.c,v 1.18 2000/11/24 04:18:20 millert Exp $ */
/*
* Copyright (c) 1994 University of Maryland
* All Rights Reserved.
@@ -322,7 +322,6 @@ void add_srcdirs(int argc, char **argv)
if (argv[i][0] == '/' || topdir[0] == '\0') {
if (strlcpy(tmppath, argv[i], sizeof(tmppath)) >= sizeof(tmppath))
overflow = 1;
- continue;
} else {
if (strlcpy(tmppath, topdir, sizeof(tmppath)) >= sizeof(tmppath)||
strlcat(tmppath, "/", sizeof(tmppath)) >= sizeof(tmppath) ||