diff options
author | charnier <charnier@FreeBSD.org> | 1997-12-02 12:30:04 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-12-02 12:30:04 +0000 |
commit | a3ea3db57512d9269c135a0609481f2ac6cae39d (patch) | |
tree | 198bc40666bb1ccee25e8ee53812b2977be1fba9 /libexec/rshd/rshd.c | |
parent | 9f2efa4db96cde0b43aa15421cda1aa2e4a138c1 (diff) | |
download | FreeBSD-src-a3ea3db57512d9269c135a0609481f2ac6cae39d.zip FreeBSD-src-a3ea3db57512d9269c135a0609481f2ac6cae39d.tar.gz |
No \n in syslog() strings. Add man page to Xrefs. Change null byte to NUL byte.
Diffstat (limited to 'libexec/rshd/rshd.c')
-rw-r--r-- | libexec/rshd/rshd.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/libexec/rshd/rshd.c b/libexec/rshd/rshd.c index a5e8b6e..52e9c52 100644 --- a/libexec/rshd/rshd.c +++ b/libexec/rshd/rshd.c @@ -29,8 +29,6 @@ * 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: rshd.c,v 1.18 1997/07/18 21:04:19 wosch Exp $ */ #ifndef lint @@ -40,7 +38,11 @@ static const char copyright[] = #endif /* not lint */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)rshd.c 8.2 (Berkeley) 4/6/94"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ /* @@ -239,7 +241,7 @@ doit(fromp) #endif fromp->sin_port = ntohs((u_short)fromp->sin_port); if (fromp->sin_family != AF_INET) { - syslog(LOG_ERR, "malformed \"from\" address (af %d)\n", + syslog(LOG_ERR, "malformed \"from\" address (af %d)", fromp->sin_family); exit(1); } @@ -259,7 +261,7 @@ doit(fromp) u_char c = optbuf[i]; if (c == IPOPT_LSRR || c == IPOPT_SSRR) { syslog(LOG_NOTICE, - "Connection refused from %s with IP option %s", + "connection refused from %s with IP option %s", inet_ntoa(fromp->sin_addr), c == IPOPT_LSRR ? "LSRR" : "SSRR"); exit(1); @@ -278,7 +280,7 @@ doit(fromp) if (fromp->sin_port >= IPPORT_RESERVED || fromp->sin_port < IPPORT_RESERVED/2) { syslog(LOG_NOTICE|LOG_AUTH, - "Connection from %s on illegal port %u", + "connection from %s on illegal port %u", inet_ntoa(fromp->sin_addr), fromp->sin_port); exit(1); @@ -361,7 +363,7 @@ doit(fromp) hp = gethostbyname(remotehost); if (hp == NULL) { syslog(LOG_INFO, - "Couldn't look up address for %s", + "couldn't look up address for %s", remotehost); errorstr = "Couldn't look up address for your host (%s)\n"; @@ -372,7 +374,7 @@ doit(fromp) } else for (; ; hp->h_addr_list++) { if (hp->h_addr_list[0] == NULL) { syslog(LOG_NOTICE, - "Host addr %s not listed for host %s", + "host addr %s not listed for host %s", inet_ntoa(fromp->sin_addr), hp->h_name); errorstr = |