comparison lib/misc.c @ 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 08e7b5186eb8
children 9b68dc473807
comparison
equal deleted inserted replaced
652:cb8ba8124e0e 653:07dc89f95076
354 GLIB_MICRO_VERSION); 354 GLIB_MICRO_VERSION);
355 355
356 printf ("PTY implementation: %s\n", gftp_get_pty_impl ()); 356 printf ("PTY implementation: %s\n", gftp_get_pty_impl ());
357 357
358 #ifdef USE_SSL 358 #ifdef USE_SSL
359 printf ("OpenSSL version: 0x%lx\n", OPENSSL_VERSION_NUMBER); 359 printf ("OpenSSL version: %s\n", OPENSSL_VERSION_TEXT);
360 #endif 360 #endif
361 361
362 printf ("Enabled protocols: "); 362 printf ("Enabled protocols: ");
363 for (i=0; gftp_protocols[i].name != NULL; i++) 363 for (i=0; gftp_protocols[i].name != NULL; i++)
364 { 364 {