Add -vxz to SYNOPSIS and usage.

This commit is contained in:
wiz 2011-02-16 19:32:26 +00:00
parent 5c6cde8ab3
commit 32cebeb729
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: reboot.8,v 1.28 2011/02/16 17:53:31 dyoung Exp $
.\" $NetBSD: reboot.8,v 1.29 2011/02/16 19:32:26 wiz Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -39,11 +39,11 @@
.Nd restarting, powering down and stopping the system
.Sh SYNOPSIS
.Nm halt
.Op Fl dlnpq
.Op Fl dlnpqvxz
.Nm poweroff
.Op Fl dlnq
.Op Fl dlnqvxz
.Nm
.Op Fl dlnq
.Op Fl dlnqvxz
.Op Ar arg ...
.Sh DESCRIPTION
The

View File

@ -1,4 +1,4 @@
/* $NetBSD: reboot.c,v 1.37 2011/02/16 17:53:31 dyoung Exp $ */
/* $NetBSD: reboot.c,v 1.38 2011/02/16 19:32:26 wiz Exp $ */
/*
* Copyright (c) 1980, 1986, 1993
@ -40,7 +40,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1986, 1993\
#if 0
static char sccsid[] = "@(#)reboot.c 8.1 (Berkeley) 6/5/93";
#else
__RCSID("$NetBSD: reboot.c,v 1.37 2011/02/16 17:53:31 dyoung Exp $");
__RCSID("$NetBSD: reboot.c,v 1.38 2011/02/16 19:32:26 wiz Exp $");
#endif
#endif /* not lint */
@ -251,7 +251,7 @@ usage(void)
{
const char *pflag = dohalt ? "p" : "";
(void)fprintf(stderr, "usage: %s [-dln%sq] [-- <boot string>]\n",
(void)fprintf(stderr, "usage: %s [-dln%sqvxz] [-- <boot string>]\n",
getprogname(), pflag);
exit(1);
}