- (djm) One more portable-specific one from dlheine@suif.Stanford.EDU/

CLOUSEAU
This commit is contained in:
Damien Miller 2003-03-10 11:23:06 +11:00
parent 0011138d47
commit f211efc690
2 changed files with 5 additions and 2 deletions

View File

@ -4,6 +4,8 @@
[channels.c monitor.c scp.c session.c sftp-client.c sftp-int.c]
[sftp-server.c ssh-add.c sshconnect2.c]
fix memory leaks; from dlheine@suif.Stanford.EDU/CLOUSEAU; ok djm@
- (djm) One more portable-specific one from dlheine@suif.Stanford.EDU/
CLOUSEAU
20030225
- (djm) Fix some compile errors spotted by dtucker and his fabulous
@ -1198,4 +1200,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@
$Id: ChangeLog,v 1.2623 2003/03/10 00:21:17 djm Exp $
$Id: ChangeLog,v 1.2624 2003/03/10 00:23:06 djm Exp $

View File

@ -163,7 +163,7 @@
#include "log.h"
#include "atomicio.h"
RCSID("$Id: loginrec.c,v 1.46 2003/01/07 05:46:58 djm Exp $");
RCSID("$Id: loginrec.c,v 1.47 2003/03/10 00:23:07 djm Exp $");
#ifdef HAVE_UTIL_H
# include <util.h>
@ -1345,6 +1345,7 @@ syslogin_perform_login(struct logininfo *li)
}
construct_utmp(li, ut);
login(ut);
free(ut);
return 1;
}