aboutsummaryrefslogtreecommitdiff
path: root/bin/hostname
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>1997-03-28 15:24:41 +0000
committerWarner Losh <imp@FreeBSD.org>1997-03-28 15:24:41 +0000
commit93ef08af3ef1a9fb7a3af6b7212d3ca094e9aba6 (patch)
tree27b535c748fe2bf5a45a09dca51479595187c73f /bin/hostname
parentcaccaa9b2a645d1b9261aff743dfc96f05927071 (diff)
downloadsrc-93ef08af3ef1a9fb7a3af6b7212d3ca094e9aba6.tar.gz
src-93ef08af3ef1a9fb7a3af6b7212d3ca094e9aba6.zip
compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.
Notes
Notes: svn path=/head/; revision=24348
Diffstat (limited to 'bin/hostname')
-rw-r--r--bin/hostname/hostname.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/hostname/hostname.c b/bin/hostname/hostname.c
index a64beef40dc1..15aee0072636 100644
--- a/bin/hostname/hostname.c
+++ b/bin/hostname/hostname.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: hostname.c,v 1.5 1997/02/22 14:03:42 peter Exp $
*/
#ifndef lint
@@ -62,7 +62,7 @@ main(argc,argv)
char *p, hostname[MAXHOSTNAMELEN];
sflag = 0;
- while ((ch = getopt(argc, argv, "s")) != EOF)
+ while ((ch = getopt(argc, argv, "s")) != -1)
switch (ch) {
case 's':
sflag = 1;