# HG changeset patch # User nenolod # Date 1154121179 25200 # Node ID 1c0cd95ef1ed96e1194b67d44f193b0bbb1add85 # Parent c3b203d258a721b181b88174ff139735a84e9c3e [svn] - fix nemo's bug diff -r c3b203d258a7 -r 1c0cd95ef1ed ChangeLog --- a/ChangeLog Fri Jul 28 13:57:26 2006 -0700 +++ b/ChangeLog Fri Jul 28 14:12:59 2006 -0700 @@ -1,3 +1,12 @@ +2006-07-28 20:57:26 +0000 William Pitcock + revision [1818] + - heh + + + Changes: Modified: + +1 -1 trunk/sqlite/sqliteInt.h + + 2006-07-28 20:53:45 +0000 William Pitcock revision [1816] - connect sqlite to the build diff -r c3b203d258a7 -r 1c0cd95ef1ed audacious/controlsocket.c --- a/audacious/controlsocket.c Fri Jul 28 13:57:26 2006 -0700 +++ b/audacious/controlsocket.c Fri Jul 28 14:12:59 2006 -0700 @@ -82,7 +82,10 @@ { audacious_set_session_uri(cfg.session_uri_base); - if (cfg.session_uri_base == NULL || !g_strncasecmp(cfg.session_uri_base, "tcp://", 6)) + if (cfg.session_uri_base == NULL) + return ctrlsocket_setup_unix(); + + if (!g_strncasecmp(cfg.session_uri_base, "tcp://", 6)) return ctrlsocket_setup_tcp(); return ctrlsocket_setup_unix();