Commit 351b9cf0 authored by Antoine Cellerier's avatar Antoine Cellerier

Use the longtext as longtext.

parent 5777fa8d
...@@ -201,7 +201,7 @@ int vlc_config_set (module_config_t *restrict item, int id, ...) ...@@ -201,7 +201,7 @@ int vlc_config_set (module_config_t *restrict item, int id, ...)
const char *longtext = va_arg (ap, const char *); const char *longtext = va_arg (ap, const char *);
item->psz_text = text ? strdup ( _(text)) : NULL; item->psz_text = text ? strdup ( _(text)) : NULL;
item->psz_longtext = longtext ? strdup ( _(text)) : NULL; item->psz_longtext = longtext ? strdup ( _(longtext)) : NULL;
ret = 0; ret = 0;
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment