mirror of https://github.com/MidnightCommander/mc
Removed '\n' from a print_vfs_message() call in ftpfs.c
It caused funny effects if "XTerm hintbar" was on (rxvt+Windowmaker).
This commit is contained in:
parent
99de5c0197
commit
d82df89441
|
@ -1,3 +1,8 @@
|
|||
Wed Sep 23 11:51:12 1998 Pavel Roskin <pavel_roskin@geocities.com)
|
||||
|
||||
* ftpfs.c: Special characters were printed via print_vfs_message.
|
||||
This caused funny effects if "XTerm hintbar" was on.
|
||||
|
||||
Mon Sep 21 11:40:30 1998 Pavel Machek <pavel@ucw.cz>
|
||||
|
||||
* ftpfs.c, fish.c: added O_LINEAR mode to handle linear read of
|
||||
|
|
|
@ -739,7 +739,7 @@ open_command_connection (char *host, char *user, int port, char *netrcpass)
|
|||
retry_seconds = ftpfs_retry_seconds;
|
||||
enable_interrupt_key ();
|
||||
for (count_down = retry_seconds; count_down; count_down--){
|
||||
print_vfs_message ("Waiting to retry... %d (Control-C to cancel)\n", count_down);
|
||||
print_vfs_message ("Waiting to retry... %d (Control-C to cancel)", count_down);
|
||||
sleep (1);
|
||||
if (got_interrupt ()){
|
||||
/* my_errno = E; */
|
||||
|
|
Loading…
Reference in New Issue