diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-24 04:18:21 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-24 04:18:21 +0000 |
commit | 7d85e835ae617750e614b72bd609076102f39522 (patch) | |
tree | e1ebe4acad7f93c4396cdefab43092884214ec73 /distrib | |
parent | b0f76f26695b0b23bc458cd46fe6a64a00ebc8d7 (diff) |
Remove errant 'continue' statement that breaks absolute paths;
paulc@passtheaardvark.com
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/crunch/crunchgen/crunchgen.c | 3 |
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) || |