mirror of git://anongit.mindrot.org/openssh.git
upstream: fix swapping of source and destination addresses in some sshd
log messages OpenBSD-Commit-ID: 24d4cbb86325275df1f037545aa3b91456e52d25
This commit is contained in:
parent
2a50a8f1fa
commit
171427261d
4
sshd.c
4
sshd.c
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: sshd.c,v 1.609 2024/06/27 23:01:15 djm Exp $ */
|
||||
/* $OpenBSD: sshd.c,v 1.610 2024/08/17 08:09:50 djm Exp $ */
|
||||
/*
|
||||
* Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
|
||||
* Copyright (c) 2002 Niels Provos. All rights reserved.
|
||||
|
@ -262,7 +262,7 @@ child_register(int pipefd, int sockfd)
|
|||
} else {
|
||||
laddr = get_local_ipaddr(sockfd);
|
||||
raddr = get_peer_ipaddr(sockfd);
|
||||
xasprintf(&child->id, "connection from %s to %s", laddr, raddr);
|
||||
xasprintf(&child->id, "connection from %s to %s", raddr, laddr);
|
||||
}
|
||||
free(laddr);
|
||||
free(raddr);
|
||||
|
|
Loading…
Reference in New Issue