1
1

2000-05-18 Andrew V. Samoilov <sav@bcs.zp.ua>

* ftpfs.c: (my_get_host_and_username) space between macro name and
       parentheses removed
Этот коммит содержится в:
Pavel Machek 2000-05-19 13:09:41 +00:00
родитель 8b3d09b336
Коммит 392c7489e3
2 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2000-05-18 Andrew V. Samoilov <sav@bcs.zp.ua>
* ftpfs.c: (my_get_host_and_username) space between macro name and
parentheses removed
2000-05-15 Andrew V. Samoilov <sav@bcs.zp.ua> 2000-05-15 Andrew V. Samoilov <sav@bcs.zp.ua>
* tar.c (read_header): memory leaking for empty symlink's names fixed * tar.c (read_header): memory leaking for empty symlink's names fixed

Просмотреть файл

@ -212,7 +212,7 @@ translate_path (vfs *me, vfs_s_super *super, const char *remote_path)
#define FTP_COMMAND_PORT 21 #define FTP_COMMAND_PORT 21
#define HSC_PROXY_PORT 9875 #define HSC_PROXY_PORT 9875
#define my_get_host_and_username (path, host, user, port, pass) \ #define my_get_host_and_username(path, host, user, port, pass) \
vfs_split_url (path, host, user, port, pass, FTP_COMMAND_PORT, URL_DEFAULTANON) vfs_split_url (path, host, user, port, pass, FTP_COMMAND_PORT, URL_DEFAULTANON)
/* Returns a reply code, check /usr/include/arpa/ftp.h for possible values */ /* Returns a reply code, check /usr/include/arpa/ftp.h for possible values */
@ -706,7 +706,6 @@ int
open_archive_int (vfs *me, vfs_s_super *super) open_archive_int (vfs *me, vfs_s_super *super)
{ {
int retry_seconds, count_down; int retry_seconds, count_down;
char *netrcpass = NULL;
/* We do not want to use the passive if we are using proxies */ /* We do not want to use the passive if we are using proxies */
if (SUP.use_proxy) if (SUP.use_proxy)
@ -720,7 +719,7 @@ open_archive_int (vfs *me, vfs_s_super *super)
if (SUP.sock == -1) if (SUP.sock == -1)
return -1; return -1;
if (login_server (me, super, netrcpass)) { if (login_server (me, super, NULL)) {
/* Logged in, no need to retry the connection */ /* Logged in, no need to retry the connection */
break; break;
} else { } else {