Subversion Repositories lsh

Compare Revisions

Ignore whitespace Rev 108 → Rev 109

/trunk/debian/changelog
1,3 → 1,11
lsh-utils (2.1-2) unstable; urgency=low
 
* new-readline-completion-function-typedef.patch: switch to new-style
readline typedef for lsftp_rl_completion pointer cast (Closes:
#741771).
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 16 Mar 2014 18:07:46 +0100
 
lsh-utils (2.1-1) unstable; urgency=low
 
* New upstream release.
/trunk/debian/patches/new-readline-completion-function-typedef.patch
0,0 → 1,11
--- a/src/sftp/rl.c
+++ b/src/sftp/rl.c
@@ -116,7 +116,7 @@ void lsftp_rl_init()
rl_basic_word_break_characters =" \n\t"; /* Only whitespace break words */
RL_CHAR_IS_QUOTED = char_quoted;
- rl_attempted_completion_function = (CPPFunction *)lsftp_rl_completion;
+ rl_attempted_completion_function = (rl_completion_func_t *)lsftp_rl_completion;
interactive = 1; /* Set the interactive flag in the main program */
/trunk/debian/patches/series
1,2 → 1,3
sftp-server-mansection.patch
blacklist.patch
new-readline-completion-function-typedef.patch