comparison lib/gftp.h @ 899:f716c8dbeaff

2007-3-22 Brian Masney <masneyb@gftp.org> * lib/gftp.h lib/protocols.c - fixed two remaining codepage related issues: i) The first was a problem parsing the remote_charsets option. ii) The second was the same IConv structure being used for the local and remote side. Each side now has their own IConv structure. (from Alexander Orlov <alxorlov@pochta.ru>)
author masneyb
date Thu, 22 Mar 2007 22:11:27 +0000
parents 4ab11f70a7f4
children 936635b76f02
comparison
equal deleted inserted replaced
898:a5ca449ea12a 899:f716c8dbeaff
500 #ifdef USE_SSL 500 #ifdef USE_SSL
501 SSL * ssl; 501 SSL * ssl;
502 #endif 502 #endif
503 503
504 #if GLIB_MAJOR_VERSION > 1 504 #if GLIB_MAJOR_VERSION > 1
505 GIConv iconv; 505 GIConv iconv_to, iconv_from;
506 unsigned int iconv_initialized : 1; 506 unsigned int iconv_from_initialized : 1,
507 iconv_to_initialized : 1;
507 char *iconv_charset; 508 char *iconv_charset;
508 #endif 509 #endif
509 }; 510 };
510 511
511 512