- (tim) wrap el_end() in #ifdef USE_LIBEDIT

This commit is contained in:
Tim Rice 2005-08-15 14:52:50 -07:00
parent 0e2c102858
commit 027e8b10f5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,6 @@
20050815
- (tim) wrap el_end() in #ifdef USE_LIBEDIT
20050812
- (djm) OpenBSD CVS Sync
- markus@cvs.openbsd.org 2005/07/28 17:36:22
@ -2932,4 +2935,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3871 2005/08/12 12:16:22 djm Exp $
$Id: ChangeLog,v 1.3872 2005/08/15 21:52:50 tim Exp $

2
sftp.c
View File

@ -1355,8 +1355,10 @@ interactive_loop(int fd_in, int fd_out, char *file1, char *file2)
}
xfree(pwd);
#ifdef USE_LIBEDIT
if (el != NULL)
el_end(el);
#endif /* USE_LIBEDIT */
/* err == 1 signifies normal "quit" exit */
return (err >= 0 ? 0 : -1);