/rusxmms/librcc

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcc

« back to all changes in this revision

Viewing changes to src/fs.c

  • Committer: Suren A. Chilingaryan
  • Date: 2005-07-29 03:26:28 UTC
  • Revision ID: Arch-1:ds@dside.dyndns.org--darksoft-2004%librcc--main--0.1--patch-23
Translation
    - Language Translation using libtranslate is implemented
    - Autoengine sets current charset (option)

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
    char *tmpbuffer = config->ctx->tmpbuffer;
196
196
 
197
197
    if (icnv) {    
198
 
        size = rccIConv(config->ctx, icnv, name, 0);
 
198
        size = rccIConvInternal(config->ctx, icnv, name, 0);
199
199
        if (size == (size_t)-1) return NULL;
200
200
    } else {
201
201
        strncpy(tmpbuffer, name, RCC_MAX_STRING_CHARS);