diff options
author | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2010-11-06 13:32:31 +0100 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2010-11-06 13:32:31 +0100 |
commit | 8cf92b107695b2fe04b86c90d64f4f74e4288c44 (patch) | |
tree | e231de02e25c34d9729a3d9c41df5129ad619853 /libpiano/src/xml.c | |
parent | 6341560e15e220d92b6d6d87d62f51f17f8c808f (diff) | |
download | pianobar-8cf92b107695b2fe04b86c90d64f4f74e4288c44.tar.gz pianobar-8cf92b107695b2fe04b86c90d64f4f74e4288c44.tar.bz2 pianobar-8cf92b107695b2fe04b86c90d64f4f74e4288c44.zip |
Protocol version bump (v29)
- New crypto keys (thanks to ZigZagJoe for extracting them)
- addTiredSong api changed
- song identity not needed any more => removed from libpiano
Diffstat (limited to 'libpiano/src/xml.c')
-rw-r--r-- | libpiano/src/xml.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libpiano/src/xml.c b/libpiano/src/xml.c index cfbfe85..36afc87 100644 --- a/libpiano/src/xml.c +++ b/libpiano/src/xml.c @@ -267,8 +267,6 @@ static void PianoXmlParsePlaylistCb (const char *key, const ezxml_t value, song->userSeed = strdup (valueStr); } else if (strcmp ("songTitle", key) == 0) { song->title = strdup (valueStr); - } else if (strcmp ("identity", key) == 0) { - song->identity = strdup (valueStr); } else if (strcmp ("rating", key) == 0) { if (strcmp (valueStr, "1") == 0) { song->rating = PIANO_RATE_LOVE; |