diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2005-12-28 22:46:07 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2005-12-28 22:46:07 +0000 |
commit | 80d0f1654c3744d38dc7a8125e3a1316f22427d9 (patch) | |
tree | 6f510897874c9dd80495ee6858fbfffb1a9830e1 /usr.bin/ssh/canohost.c | |
parent | 4148c4fae0b987fbde9f38837c3964b0fdd4736f (diff) |
use 'break-in' for consistency; ok deraadt@ ok and input jmc@
Diffstat (limited to 'usr.bin/ssh/canohost.c')
-rw-r--r-- | usr.bin/ssh/canohost.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/canohost.c b/usr.bin/ssh/canohost.c index f55301e72fa..50273ca8758 100644 --- a/usr.bin/ssh/canohost.c +++ b/usr.bin/ssh/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" @@ -97,7 +97,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. */ @@ -112,7 +112,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); } |