aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ChangeLog6
-rw-r--r--src/libmpdclient.c9
2 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 22fe70103..83f2c2d89 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
+2005-01-23: Kalle Wallin <kaw@linux.se>
+ * libmpdclient updated to 2897
+
2005-01-20: Kalle Wallin <kaw@linux.se>
* Added French translations from Yann Cézard
+2005-01-19: shb
+ * libmpdclient updated to r2890
+
2005-01-03: Kalle Wallin <kaw@linux.se>
* Added Russian translations from Nikolay Pavlov
diff --git a/src/libmpdclient.c b/src/libmpdclient.c
index 2ab4e28cf..e93b3947e 100644
--- a/src/libmpdclient.c
+++ b/src/libmpdclient.c
@@ -410,14 +410,13 @@ void mpd_getNextReturnElement(mpd_Connection * connection) {
bufferCheck = connection->buffer+connection->bufstart;
while(connection->bufstart>=connection->buflen ||
- !(rt = strstr(bufferCheck,"\n"))) {
+ !(rt = strchr(bufferCheck,'\n'))) {
if(connection->buflen>=MPD_BUFFER_MAX_LENGTH) {
memmove(connection->buffer,
connection->buffer+
connection->bufstart,
connection->buflen-
connection->bufstart+1);
- bufferCheck-=connection->bufstart;
connection->buflen-=connection->bufstart;
connection->bufstart = 0;
}
@@ -428,7 +427,7 @@ void mpd_getNextReturnElement(mpd_Connection * connection) {
connection->doneListOk = 0;
return;
}
- bufferCheck+=connection->buflen-connection->bufstart;
+ bufferCheck = connection->buffer+connection->buflen;
tv.tv_sec = connection->timeout.tv_sec;
tv.tv_usec = connection->timeout.tv_usec;
FD_ZERO(&fds);
@@ -438,7 +437,9 @@ void mpd_getNextReturnElement(mpd_Connection * connection) {
connection->buffer+connection->buflen,
MPD_BUFFER_MAX_LENGTH-connection->buflen,
#ifdef WIN32
- ioctlsocket(connection->sock, commandLen, commandPtr));
+ ioctlsocket(connection->sock,
+ commandLen,
+ commandPtr));
#endif
#ifndef WIN32
MSG_DONTWAIT);