[git commit master 1/1] telnetd: write utmp record with correct pid

Denys Vlasenko vda.linux at googlemail.com
Tue Nov 30 08:17:30 UTC 2010


commit: http://git.busybox.net/busybox/commit/?id=58c3d21c2e3caa5e5f3736a72136903dbf3c69d1
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/telnetd.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/networking/telnetd.c b/networking/telnetd.c
index 671529d..07c6a6a 100644
--- a/networking/telnetd.c
+++ b/networking/telnetd.c
@@ -314,6 +314,8 @@ make_new_session(
 	/* Restore default signal handling ASAP */
 	bb_signals((1 << SIGCHLD) + (1 << SIGPIPE), SIG_DFL);
 
+	pid = getpid();
+
 	if (ENABLE_FEATURE_UTMP) {
 		len_and_sockaddr *lsa = get_peer_lsa(sock);
 		char *hostname = NULL;
@@ -335,7 +337,6 @@ make_new_session(
 	xopen(tty_name, O_RDWR); /* becomes our ctty */
 	xdup2(0, 1);
 	xdup2(0, 2);
-	pid = getpid();
 	tcsetpgrp(0, pid); /* switch this tty's process group to us */
 
 	/* The pseudo-terminal allocated to the client is configured to operate
-- 
1.7.2.2



More information about the busybox-cvs mailing list