diff options
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.8 | 4 | ||||
-rw-r--r-- | usr.sbin/sasyncd/conf.y | 4 | ||||
-rw-r--r-- | usr.sbin/sasyncd/sasyncd.8 | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.8 b/usr.sbin/bgpctl/bgpctl.8 index 642214330da..ee9ece8fb6c 100644 --- a/usr.sbin/bgpctl/bgpctl.8 +++ b/usr.sbin/bgpctl/bgpctl.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bgpctl.8,v 1.26 2005/05/27 17:10:29 claudio Exp $ +.\" $OpenBSD: bgpctl.8,v 1.27 2005/07/09 07:53:25 jmc Exp $ .\" .\" Copyright (c) 2003 Henning Brauer <henning@openbsd.org> .\" @@ -41,7 +41,7 @@ for The options are as follows: .Bl -tag -width Ds .It Fl n -Show neighbors' IP-addresses instead of their description. +Show neighbors' IP addresses instead of their description. .It Fl s Ar socket Use .Ar socket diff --git a/usr.sbin/sasyncd/conf.y b/usr.sbin/sasyncd/conf.y index 322e7309d0d..2be1366620e 100644 --- a/usr.sbin/sasyncd/conf.y +++ b/usr.sbin/sasyncd/conf.y @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.y,v 1.6 2005/05/28 01:36:02 deraadt Exp $ */ +/* $OpenBSD: conf.y,v 1.7 2005/07/09 07:53:26 jmc Exp $ */ /* * Copyright (c) 2005 Håkan Olsson. All rights reserved. @@ -246,7 +246,7 @@ yylex(void) /* Numerical token? */ if (isdigit(*confptr)) { for (p = confptr; *p; p++) - if (*p == '.') /* IP-address, or bad input */ + if (*p == '.') /* IP address, or bad input */ goto is_string; v = (int)strtol(confptr, (char **)NULL, 10); yylval.val = v; diff --git a/usr.sbin/sasyncd/sasyncd.8 b/usr.sbin/sasyncd/sasyncd.8 index 1b9e9d4959f..ad26a6c3c2a 100644 --- a/usr.sbin/sasyncd/sasyncd.8 +++ b/usr.sbin/sasyncd/sasyncd.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sasyncd.8,v 1.6 2005/05/27 21:20:50 ho Exp $ +.\" $OpenBSD: sasyncd.8,v 1.7 2005/07/09 07:53:26 jmc Exp $ .\" .\" Copyright (c) 2005 Håkan Olsson. All rights reserved. .\" @@ -46,7 +46,7 @@ The most typical scenario is to run .Nm on hosts also running .Xr isakmpd 8 -and sharing a common IP-address using +and sharing a common IP address using .Xr carp 4 . .Pp The daemon runs either in master or slave mode, in which the master |