Sergey Gribov - 2002-10-22

Logged In: YES
user_id=632274

Hi,

I've found what was a problem. The problem actually in my
new distribution
(RedHat Advanced Server 2.1). It doesn't set LANG variable
and this is that
crashes rusconv.so. To fix this problem you need to add the
following lines
at the begin of gaim_plugin_init() (line 209):

char *lang = getenv("LANG");
if (lang == NULL) lang = "C";
DefineCodeTable( LocaleDryer(lang) );

This is working fine now....

Another option of course is to do 'setenv LANG C' :)

Cheers,