summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
Diffstat (limited to 'session.c')
-rw-r--r--session.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/session.c b/session.c
index 0e78aca34..566bd900e 100644
--- a/session.c
+++ b/session.c
@@ -33,7 +33,7 @@
33 */ 33 */
34 34
35#include "includes.h" 35#include "includes.h"
36RCSID("$OpenBSD: session.c,v 1.147 2002/08/22 21:45:41 markus Exp $"); 36RCSID("$OpenBSD: session.c,v 1.148 2002/08/29 15:57:25 stevesk Exp $");
37 37
38#include "ssh.h" 38#include "ssh.h"
39#include "ssh1.h" 39#include "ssh1.h"
@@ -671,8 +671,8 @@ do_pre_login(Session *s)
671 * the address be 0.0.0.0. 671 * the address be 0.0.0.0.
672 */ 672 */
673 memset(&from, 0, sizeof(from)); 673 memset(&from, 0, sizeof(from));
674 fromlen = sizeof(from);
674 if (packet_connection_is_on_socket()) { 675 if (packet_connection_is_on_socket()) {
675 fromlen = sizeof(from);
676 if (getpeername(packet_get_connection_in(), 676 if (getpeername(packet_get_connection_in(),
677 (struct sockaddr *) & from, &fromlen) < 0) { 677 (struct sockaddr *) & from, &fromlen) < 0) {
678 debug("getpeername: %.100s", strerror(errno)); 678 debug("getpeername: %.100s", strerror(errno));
@@ -737,7 +737,7 @@ do_login(Session *s, const char *command)
737 record_login(pid, s->tty, pw->pw_name, pw->pw_uid, 737 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
738 get_remote_name_or_ip(utmp_len, 738 get_remote_name_or_ip(utmp_len,
739 options.verify_reverse_mapping), 739 options.verify_reverse_mapping),
740 (struct sockaddr *)&from); 740 (struct sockaddr *)&from, fromlen);
741 741
742#ifdef USE_PAM 742#ifdef USE_PAM
743 /* 743 /*