commit | 2da90d3b58472a4df63796ea679fde1f7d2b7a78 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Sat Sep 23 20:55:59 2000 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Sat Sep 23 20:55:59 2000 +0000 |
tree | 64ee0afb511aa42a1611cf3efb0f1958defbc239 | |
parent | 285b446d1777b9515bb83df7b18d17359f49f921 [diff] |
Force optind=1 for libc5 when doing cp in cp_mv.c
diff --git a/cp_mv.c b/cp_mv.c index 5e1a841..f56c6dd 100644 --- a/cp_mv.c +++ b/cp_mv.c
@@ -214,6 +214,10 @@ usage(cp_mv_usage[dz_i]); } } else { /* (dz_i == is_mv) */ + /* Initialize optind to 1, since in libc5 optind + * is not initialized until getopt() is called + * (or until sneaky programmers force it...). */ + optind = 1; recursiveFlag = preserveFlag = TRUE; followLinks = FALSE; }