1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

an ellipsis is not an optional argument.

This commit is contained in:
sobrado 2008-07-09 19:58:28 +00:00
parent 0b52b90c51
commit 572c5e097a
2 changed files with 5 additions and 6 deletions

View File

@ -1,4 +1,4 @@
.\" $OpenBSD: tokeninit.8,v 1.9 2007/05/31 19:20:30 jmc Exp $
.\" $OpenBSD: tokeninit.8,v 1.10 2008/07/09 19:58:28 sobrado Exp $
.\"
.\" Copyright (c) 1995 Migration Associates Corporation. All rights reserved.
.\"
@ -32,7 +32,7 @@
.\"
.\" BSDI $From: tokeninit.8,v 1.3 1997/01/16 03:23:11 bostic Exp $
.\"
.Dd $Mdocdate: May 31 2007 $
.Dd $Mdocdate: July 9 2008 $
.Dt TOKENINIT 8
.Os
.Sh NAME
@ -44,8 +44,7 @@
.Nm tokeninit
.Op Fl fhsv
.Op Fl m Ar mode
.Ar user
.Op Ar ...
.Ar user ...
.Sh DESCRIPTION
The
.Nm tokeninit

View File

@ -1,4 +1,4 @@
/* $OpenBSD: tokeninit.c,v 1.6 2007/03/15 22:33:22 jmc Exp $ */
/* $OpenBSD: tokeninit.c,v 1.7 2008/07/09 19:58:28 sobrado Exp $ */
/*-
* Copyright (c) 1995 Migration Associates Corp. All Rights Reserved
@ -115,7 +115,7 @@ main(int argc, char **argv)
break;
default:
fprintf(stderr,
"usage: %sinit [-f%ssv] [-m mode] user [...]\n",
"usage: %sinit [-f%ssv] [-m mode] user ...\n",
tt->name, (tt->options & TOKEN_HEXINIT) ? "h" : "");
exit(1);
}