summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5709213)
raw | patch | inline | side by side (parent: 5709213)
author | Max Kellermann <max@duempel.org> | |
Tue, 29 Sep 2009 16:37:30 +0000 (18:37 +0200) | ||
committer | Max Kellermann <max@duempel.org> | |
Tue, 29 Sep 2009 16:37:30 +0000 (18:37 +0200) |
The ENABLE_PLCHANGES option has been enabled for ages.
src/mpdclient.c | patch | blob | history |
diff --git a/src/mpdclient.c b/src/mpdclient.c
index 22a1d82e9c867c56d07c17f76683bef6a6500683..0b28edfb673571778a6f7416528c41774fc38e32 100644 (file)
--- a/src/mpdclient.c
+++ b/src/mpdclient.c
#undef ENABLE_FANCY_PLAYLIST_MANAGMENT_CMD_ADD /* broken with song id's */
#define ENABLE_FANCY_PLAYLIST_MANAGMENT_CMD_DELETE
#define ENABLE_FANCY_PLAYLIST_MANAGMENT_CMD_MOVE
-#define ENABLE_PLCHANGES
#define BUFSIZE 1024
return mpdclient_finish_command(c);
}
-#ifdef ENABLE_PLCHANGES
-
/* update playlist (plchanges) */
gint
mpdclient_playlist_update_changes(struct mpdclient *c)
return 0;
}
-#else
-gint
-mpdclient_playlist_update_changes(struct mpdclient *c)
-{
- return mpdclient_playlist_update(c);
-}
-#endif
-
/****************************************************************************/
/*** Filelist functions *****************************************************/