Mercurial > audlegacy
changeset 1769:8a926dec916f trunk
[svn] - parse equals correctly.
Patch submitted by: TiCPU.
author | nenolod |
---|---|
date | Mon, 02 Oct 2006 03:35:09 -0700 |
parents | def887eae029 |
children | 80955c196e11 |
files | ChangeLog libaudacious/rcfile.c |
diffstat | 2 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Oct 02 01:56:53 2006 -0700 +++ b/ChangeLog Mon Oct 02 03:35:09 2006 -0700 @@ -1,3 +1,12 @@ +2006-10-02 08:56:53 +0000 William Pitcock <nenolod@nenolod.net> + revision [2473] + - remove some old debugging notices + - reset audio output if fmt does not match the fmt we already negotiated (for instance, LE->BE conversion requested) + + trunk/audacious/output.c | 12 +----------- + 1 file changed, 1 insertion(+), 11 deletions(-) + + 2006-10-02 08:52:12 +0000 William Pitcock <nenolod@nenolod.net> revision [2471] - remove an artifact of the bmp -> audacious transition
--- a/libaudacious/rcfile.c Mon Oct 02 01:56:53 2006 -0700 +++ b/libaudacious/rcfile.c Mon Oct 02 03:35:09 2006 -0700 @@ -100,7 +100,7 @@ else if (lines[i][0] != '#' && section) { if ((tmp = strchr(lines[i], '='))) { gchar **frags; - frags = g_strsplit(lines[i], "=", 0); + frags = g_strsplit(lines[i], "=", 2); if (strlen(frags[1]) > 0) { bmp_rcfile_create_string(section, frags[0], frags[1]); };