From f9ab791ac855bb63b83896c7540995ff8632ce5e Mon Sep 17 00:00:00 2001 From: Slava Zanko Date: Wed, 15 Apr 2009 17:11:00 +0300 Subject: [PATCH] vfs/vfs.c: Replace str_conv_t to GIConv --- vfs/vfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vfs/vfs.c b/vfs/vfs.c index 37a7f5d08..568898346 100644 --- a/vfs/vfs.c +++ b/vfs/vfs.c @@ -67,7 +67,7 @@ struct vfs_openfile { struct vfs_dirinfo{ DIR *info; - str_conv_t converter; + GIConv converter; }; @@ -383,14 +383,14 @@ vfs_supported_enconding (const char *encoding) { */ static int _vfs_translate_path (const char *path, int size, - str_conv_t defcnv, GString *buffer) + GIConv defcnv, GString *buffer) { const char *semi; const char *ps; const char *slash; int state = 0; static char encoding[16]; - str_conv_t coder; + GIConv coder; int ms; if (size == 0) return 0;