diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-20 17:22:13 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-20 17:22:13 +0000 |
commit | c89649dca4730570d316d1ec3c08c50d074d5c5d (patch) | |
tree | 9ab575c01486f13824635d39b24f0389437505ee /src/xine-engine/configfile.c | |
parent | 7123fe39ff2c42855c5d96039770bbc4b8ae1f75 (diff) | |
download | xine-lib-c89649dca4730570d316d1ec3c08c50d074d5c5d.tar.gz xine-lib-c89649dca4730570d316d1ec3c08c50d074d5c5d.tar.bz2 |
testing some configfile stuff...
CVS patchset: 1090
CVS date: 2001/11/20 17:22:13
Diffstat (limited to 'src/xine-engine/configfile.c')
-rw-r--r-- | src/xine-engine/configfile.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c index 4fa914db3..696a8c226 100644 --- a/src/xine-engine/configfile.c +++ b/src/xine-engine/configfile.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: configfile.c,v 1.9 2001/11/19 02:57:10 guenter Exp $ + * $Id: configfile.c,v 1.10 2001/11/20 17:22:14 miguelfreitas Exp $ * * config file management - implementation * @@ -64,6 +64,7 @@ static cfg_entry_t *config_file_add (config_values_t *this, char *key) { cfg_entry_t *entry; entry = (cfg_entry_t *) xine_xmalloc (sizeof (cfg_entry_t)); + entry->config = this; entry->key = copy_string (key); entry->type = CONFIG_TYPE_UNKNOWN; @@ -560,6 +561,9 @@ config_values_t *config_file_init (char *filename) { /* * $Log: configfile.c,v $ + * Revision 1.10 2001/11/20 17:22:14 miguelfreitas + * testing some configfile stuff... + * * Revision 1.9 2001/11/19 02:57:10 guenter * make description strings optional - config options without description string will not appear in setup dialog * |