Mercurial > gftp.yaz
changeset 653:07dc89f95076
2004-12-31 Brian Masney <masneyb@gftp.org>
* lib/misc.c (gftp_info) - when displaying the OpenSSL information,
display OPENSSL_VERSION_TEXT instead of OPENSSL_VERSION_NUMBER
* src/gtk/transfer.c (update_file_status) - expand the length of the
total transfered buffer. The total transfered was being truncated in
some languages by g_snprintf() (from Pavel Vainerman <pv@etersoft.ru>)
author | masneyb |
---|---|
date | Fri, 31 Dec 2004 16:12:13 +0000 |
parents | cb8ba8124e0e |
children | f6e2ec8faf56 |
files | ChangeLog lib/misc.c src/gtk/transfer.c |
diffstat | 3 files changed, 10 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Dec 31 15:33:01 2004 +0000 +++ b/ChangeLog Fri Dec 31 16:12:13 2004 +0000 @@ -1,4 +1,11 @@ 2004-12-31 Brian Masney <masneyb@gftp.org> + * lib/misc.c (gftp_info) - when displaying the OpenSSL information, + display OPENSSL_VERSION_TEXT instead of OPENSSL_VERSION_NUMBER + + * src/gtk/transfer.c (update_file_status) - expand the length of the + total transfered buffer. The total transfered was being truncated in + some languages by g_snprintf() (from Pavel Vainerman <pv@etersoft.ru>) + * src/uicommon/gftpui.c (gftpui_common_transfer_files) - check the return status of gftp_end_transfer() to see if there was an error closing the remote file @@ -3180,7 +3187,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.386 2004/12/31 15:33:01 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.387 2004/12/31 16:12:13 masneyb Exp $ tags * debian/* - updated files from Debian maintainer
--- a/lib/misc.c Fri Dec 31 15:33:01 2004 +0000 +++ b/lib/misc.c Fri Dec 31 16:12:13 2004 +0000 @@ -356,7 +356,7 @@ printf ("PTY implementation: %s\n", gftp_get_pty_impl ()); #ifdef USE_SSL - printf ("OpenSSL version: 0x%lx\n", OPENSSL_VERSION_NUMBER); + printf ("OpenSSL version: %s\n", OPENSSL_VERSION_TEXT); #endif printf ("Enabled protocols: ");
--- a/src/gtk/transfer.c Fri Dec 31 15:33:01 2004 +0000 +++ b/src/gtk/transfer.c Fri Dec 31 16:12:13 2004 +0000 @@ -686,7 +686,7 @@ static void update_file_status (gftp_transfer * tdata) { - char totstr[100], dlstr[100], winstr[150], gotstr[50], ofstr[50]; + char totstr[150], dlstr[100], winstr[150], gotstr[50], ofstr[50]; unsigned long remaining_secs, lkbs; int hours, mins, secs, pcent, st; intptr_t show_trans_in_title;