diff options
author | Damien Miller <djm@mindrot.org> | 2005-12-31 06:19:53 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2005-12-31 06:19:53 +0100 |
commit | 5eb137c6d11be7db14dc03ea12a74884bebea3e3 (patch) | |
tree | f467cd1a617e9357b44783bffdf838b8ef2eb84e /canohost.c | |
parent | (tim) [buildpkg.sh.in] grep for $SSHDUID instead of $SSHDGID on /etc/passwd (diff) | |
download | openssh-5eb137c6d11be7db14dc03ea12a74884bebea3e3.tar.xz openssh-5eb137c6d11be7db14dc03ea12a74884bebea3e3.zip |
- (djm) OpenBSD CVS Sync
- stevesk@cvs.openbsd.org 2005/12/28 22:46:06
[canohost.c channels.c clientloop.c]
use 'break-in' for consistency; ok deraadt@ ok and input jmc@
Diffstat (limited to 'canohost.c')
-rw-r--r-- | canohost.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/canohost.c b/canohost.c index bd7f830de..6ca60e6b4 100644 --- a/canohost.c +++ b/canohost.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: canohost.c,v 1.47 2005/11/03 13:38:29 dtucker Exp $"); +RCSID("$OpenBSD: canohost.c,v 1.48 2005/12/28 22:46:06 stevesk Exp $"); #include "packet.h" #include "xmalloc.h" @@ -102,7 +102,7 @@ get_remote_hostname(int sock, int use_dns) hints.ai_socktype = SOCK_STREAM; if (getaddrinfo(name, NULL, &hints, &aitop) != 0) { logit("reverse mapping checking getaddrinfo for %.700s " - "failed - POSSIBLE BREAKIN ATTEMPT!", name); + "failed - POSSIBLE BREAK-IN ATTEMPT!", name); return xstrdup(ntop); } /* Look for the address from the list of addresses. */ @@ -117,7 +117,7 @@ get_remote_hostname(int sock, int use_dns) if (!ai) { /* Address not found for the host name. */ logit("Address %.100s maps to %.600s, but this does not " - "map back to the address - POSSIBLE BREAKIN ATTEMPT!", + "map back to the address - POSSIBLE BREAK-IN ATTEMPT!", ntop, name); return xstrdup(ntop); } |