aboutsummaryrefslogtreecommitdiffstats
path: root/ftp/lftp/files
diff options
context:
space:
mode:
authorehaupt <ehaupt@FreeBSD.org>2005-10-28 05:40:13 +0800
committerehaupt <ehaupt@FreeBSD.org>2005-10-28 05:40:13 +0800
commitc74db81d5a0c85e071d47341fa7572fb56296811 (patch)
tree5419bb71d840199c127ea9382bb1591dec69a094 /ftp/lftp/files
parent96a5ab8557ab5ada062319998d3c7223c7cd4a2c (diff)
downloadfreebsd-ports-gnome-c74db81d5a0c85e071d47341fa7572fb56296811.tar.gz
freebsd-ports-gnome-c74db81d5a0c85e071d47341fa7572fb56296811.tar.zst
freebsd-ports-gnome-c74db81d5a0c85e071d47341fa7572fb56296811.zip
- Update to 3.3.3 and [1]
- Fix build on 4.x with additional patch [2] PR: 88021 Submitted by: Dmitry A. Yanko <fm@cross-road.org.ua> (maintainer) [1], pav [2]
Diffstat (limited to 'ftp/lftp/files')
-rw-r--r--ftp/lftp/files/patch-src-lftp_rl.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/ftp/lftp/files/patch-src-lftp_rl.c b/ftp/lftp/files/patch-src-lftp_rl.c
new file mode 100644
index 000000000000..4d2fd23d534d
--- /dev/null
+++ b/ftp/lftp/files/patch-src-lftp_rl.c
@@ -0,0 +1,13 @@
+--- src/lftp_rl.c.orig Tue Oct 18 11:21:22 2005
++++ src/lftp_rl.c Fri Oct 21 21:55:00 2005
+@@ -191,9 +191,9 @@
+ if(!lftp_history_file)
+ {
+ const char *home=get_lftp_home();
++ const char *add="/rl_history";
+ if(!home)
+ return;
+- const char *add="/rl_history";
+ lftp_history_file=(char*)malloc(strlen(home)+strlen(add)+1);
+ strcat(strcpy(lftp_history_file,home),add);
+ }