diff options
Diffstat (limited to 'coreutils/env.c')
-rw-r--r-- | coreutils/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/env.c b/coreutils/env.c index 2ce99b0ad..e4cad271b 100644 --- a/coreutils/env.c +++ b/coreutils/env.c | |||
@@ -58,7 +58,7 @@ int env_main(int argc, char** argv) | |||
58 | opt = getopt32(argc, argv, "+iu:", &unset_env); | 58 | opt = getopt32(argc, argv, "+iu:", &unset_env); |
59 | 59 | ||
60 | argv += optind; | 60 | argv += optind; |
61 | if (*argv && (argv[0][0] == '-') && !argv[0][1]) { | 61 | if (*argv && LONE_DASH(argv[0])) { |
62 | opt |= 1; | 62 | opt |= 1; |
63 | ++argv; | 63 | ++argv; |
64 | } | 64 | } |