summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-05-11 06:32:47 +0000
committerJim Meyering <jim@meyering.net>2003-05-11 06:32:47 +0000
commit92f900fdf3830288d10a008eac4ee5d569cc5b19 (patch)
treebfce27ea1e5f215fd666740b40a4bcfe3ab434f2
parent6a0019aa786634a9cfb8a5a84c3d155cddef8102 (diff)
downloadcoreutils-92f900fdf3830288d10a008eac4ee5d569cc5b19.tar.xz
(main): Handle argc < optind.
-rw-r--r--src/printenv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/printenv.c b/src/printenv.c
index 89472ff8d..73c431fe6 100644
--- a/src/printenv.c
+++ b/src/printenv.c
@@ -1,5 +1,5 @@
/* printenv -- print all or part of environment
- Copyright (C) 1989-1997, 1999-2002 Free Software Foundation, Inc.
+ Copyright (C) 1989-1997, 1999-2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -107,7 +107,7 @@ main (int argc, char **argv)
}
}
- if (optind == argc)
+ if (optind >= argc)
{
for (env = environ; *env != NULL; ++env)
puts (*env);