diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-05-22 13:44:07 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-05-22 13:44:07 +0000 |
commit | 78a72ced2a6b5cf041584f9cbbab36629cdfee60 (patch) | |
tree | 8f76fbf5a0cb8f93aa0b77b00c2e7cc17b4929be /net-ftp/lftp | |
parent | Update SRC_URI for Qt 4.8.1 and later. (diff) | |
download | gentoo-2-78a72ced2a6b5cf041584f9cbbab36629cdfee60.tar.gz gentoo-2-78a72ced2a6b5cf041584f9cbbab36629cdfee60.tar.bz2 gentoo-2-78a72ced2a6b5cf041584f9cbbab36629cdfee60.zip |
Old.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'net-ftp/lftp')
-rw-r--r-- | net-ftp/lftp/ChangeLog | 6 | ||||
-rw-r--r-- | net-ftp/lftp/files/lftp-4.3.4-empty-local.patch | 27 |
2 files changed, 5 insertions, 28 deletions
diff --git a/net-ftp/lftp/ChangeLog b/net-ftp/lftp/ChangeLog index ee5cf74968b1..196a54ee21d5 100644 --- a/net-ftp/lftp/ChangeLog +++ b/net-ftp/lftp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-ftp/lftp # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.358 2012/05/08 15:51:51 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.359 2012/05/22 13:44:07 jer Exp $ + + 22 May 2012; Jeroen Roovers <jer@gentoo.org> + -files/lftp-4.3.4-empty-local.patch: + Old. 08 May 2012; Brent Baude <ranger@gentoo.org> lftp-4.3.6.ebuild: Marking lftp-4.3.6 ppc64 for bug 414253 diff --git a/net-ftp/lftp/files/lftp-4.3.4-empty-local.patch b/net-ftp/lftp/files/lftp-4.3.4-empty-local.patch deleted file mode 100644 index 928d459b3870..000000000000 --- a/net-ftp/lftp/files/lftp-4.3.4-empty-local.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/src/CmdExec.cc -+++ b/src/CmdExec.cc -@@ -197,6 +197,8 @@ restart: - - const struct cmd_rec *c; - const char *cmd_name=args->getarg(0); -+ if(!cmd_name) -+ return; - int part=find_cmd(cmd_name,&c); - if(part<=0) - eprintf(_("Unknown command `%s'.\n"),cmd_name); -@@ -1223,10 +1225,14 @@ Job *CmdExec::default_cmd() - } - Job *CmdExec::builtin_local() - { -+ if(args->count()<2) { -+ eprintf(_("Usage: %s cmd [args...]\n"),args->a0()); -+ return 0; -+ } - saved_session=session.borrow(); - session=FileAccess::New("file"); - if(!session) { -- eprintf("%s: cannot create local session\n",args->a0()); -+ eprintf(_("%s: cannot create local session\n"),args->a0()); - RevertToSavedSession(); - return 0; - } |