]> git.sesse.net Git - vlc/commitdiff
Use the longtext as longtext.
authorAntoine Cellerier <dionoea@videolan.org>
Mon, 24 Dec 2007 13:48:20 +0000 (13:48 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Mon, 24 Dec 2007 13:48:20 +0000 (13:48 +0000)
src/modules/entry.c

index 6c6caa040cc89c91b583502084721f678201aaa1..c9d149924128d0d25067750278f3e98ade892097 100644 (file)
@@ -201,7 +201,7 @@ int vlc_config_set (module_config_t *restrict item, int id, ...)
             const char *longtext = va_arg (ap, const char *);
 
             item->psz_text = text ? strdup ( _(text)) : NULL;
-            item->psz_longtext = longtext ? strdup ( _(text)) : NULL;
+            item->psz_longtext = longtext ? strdup ( _(longtext)) : NULL;
             ret = 0;
             break;
         }