summaryrefslogtreecommitdiffstats
path: root/sbin/spppcontrol
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1998-01-05 07:23:02 +0000
committercharnier <charnier@FreeBSD.org>1998-01-05 07:23:02 +0000
commitc6e23310826f8815f9a35abdb657254ef4e47d66 (patch)
treee4cc3a424cc4a26da248f5da99c6928b8f7a0545 /sbin/spppcontrol
parented0fac07042c2788ae27970e78d4cbb3c7ff9dae (diff)
downloadFreeBSD-src-c6e23310826f8815f9a35abdb657254ef4e47d66.zip
FreeBSD-src-c6e23310826f8815f9a35abdb657254ef4e47d66.tar.gz
Add rcsid. Remove uneeded #include. Use fprintf() in usage() instead of err(3)
to make it print: usage: progname ...
Diffstat (limited to 'sbin/spppcontrol')
-rw-r--r--sbin/spppcontrol/spppcontrol.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/sbin/spppcontrol/spppcontrol.c b/sbin/spppcontrol/spppcontrol.c
index f961ae6..9970988 100644
--- a/sbin/spppcontrol/spppcontrol.c
+++ b/sbin/spppcontrol/spppcontrol.c
@@ -22,10 +22,13 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * $Id$
*/
+#ifndef lint
+static const char rcsid[] =
+ "$Id$";
+#endif /* not lint */
+
#include <sys/param.h>
#include <sys/callout.h>
#include <sys/ioctl.h>
@@ -37,7 +40,6 @@
#include <net/if_sppp.h>
#include <err.h>
-#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
@@ -45,7 +47,7 @@
#include <sysexits.h>
#include <unistd.h>
-void usage(void);
+static void usage(void);
void print_vals(const char *ifname, struct spppreq *sp);
const char *phase_name(enum ppp_phase phase);
const char *proto_name(u_short proto);
@@ -178,12 +180,13 @@ main(int argc, char **argv)
return 0;
}
-void
+static void
usage(void)
{
- errx(EX_USAGE,
- "usage: [-v] ifname [{my|his}auth{proto|name|secret}=..."
- "|callin|always]");
+ fprintf(stderr, "%s\n%s\n",
+ "usage: spppcontrol [-v] ifname [{my|his}auth{proto|name|secret}=...]",
+ " spppcontrol [-v] ifname callin|always");
+ exit(EX_USAGE);
}
void
OpenPOWER on IntegriCloud