diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:09 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:59:09 +0000 |
commit | 91bb3e2e916e4e963d6a872c696ef46bbd86246b (patch) | |
tree | 81eeb55b4bf711f2a47607a836ca6e92bdca0a95 /methods | |
parent | 171c45bcc2a0a59db27f6bfc142efdd466cdd8bc (diff) |
Tidy use of flNotFile
Author: jgg
Date: 2002-04-24 05:35:13 GMT
Tidy use of flNotFile
Diffstat (limited to 'methods')
-rw-r--r-- | methods/ftp.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/methods/ftp.cc b/methods/ftp.cc index bbc4a3f22..10f1406f5 100644 --- a/methods/ftp.cc +++ b/methods/ftp.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: ftp.cc,v 1.28 2001/05/22 04:02:00 jgg Exp $ +// $Id: ftp.cc,v 1.29 2002/04/24 05:35:13 jgg Exp $ /* ###################################################################### FTP Aquire Method - This is the FTP aquire method for APT. @@ -1095,7 +1095,7 @@ int main(int argc,const char *argv[]) putenv("no_proxy="); // Run the http method - string Path = flNotFile(argv[0]) + "/http"; + string Path = flNotFile(argv[0]) + "http"; execl(Path.c_str(),Path.c_str(),0); cerr << "Unable to invoke " << Path << endl; exit(100); |