Commit 22038e9f authored by Gildas Bazin's avatar Gildas Bazin

* src/misc/configuration.c: what the f??k, configuration variable names
   and subtypes were being translated.
parent e6c27e24
......@@ -2,7 +2,7 @@
* configuration.c management of the modules configuration
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: configuration.c,v 1.53 2003/04/06 01:00:07 massiot Exp $
* $Id: configuration.c,v 1.54 2003/04/07 11:48:51 gbazin Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
......@@ -396,9 +396,9 @@ void config_Duplicate( module_t *p_module, module_config_t *p_orig )
p_module->p_config[i].b_advanced = p_orig[i].b_advanced;
p_module->p_config[i].psz_type = p_orig[i].psz_type ?
strdup( _(p_orig[i].psz_type) ) : NULL;
strdup( p_orig[i].psz_type ) : NULL;
p_module->p_config[i].psz_name = p_orig[i].psz_name ?
strdup( _(p_orig[i].psz_name) ) : NULL;
strdup( p_orig[i].psz_name ) : NULL;
p_module->p_config[i].psz_text = p_orig[i].psz_text ?
strdup( _(p_orig[i].psz_text) ) : NULL;
p_module->p_config[i].psz_longtext = p_orig[i].psz_longtext ?
......
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