Commit a8b9bc70 authored by Led's avatar Led

0.9.1

parent f0be54b6
ver 0.9.1 (2003/9/30)
1) Fix a statement in the middle of declarations in listen.c, causes error for
gcc 2.7
ver 0.9.0 (2003/9/30) ver 0.9.0 (2003/9/30)
1) Random play mode 1) Random play mode
2) Alsa Mixer Support 2) Alsa Mixer Support
......
...@@ -1745,7 +1745,7 @@ fi ...@@ -1745,7 +1745,7 @@ fi
# Define the identity of the package. # Define the identity of the package.
PACKAGE=mpd PACKAGE=mpd
VERSION=0.9.0 VERSION=0.9.1
cat >>confdefs.h <<_ACEOF cat >>confdefs.h <<_ACEOF
......
AC_INIT(src/main.c) AC_INIT(src/main.c)
AM_INIT_AUTOMAKE(mpd, 0.9.0) AM_INIT_AUTOMAKE(mpd, 0.9.1)
AC_PROG_CC AC_PROG_CC
AC_PROG_INSTALL AC_PROG_INSTALL
......
mpd (0.9.1-1) unstable; urgency=low
* Update to 0.9.1
-- Warren Dukes <shank@mercury.chem.pitt.edu> Tue, 30 Sep 2003 09:09:00 -0400
mpd (0.9.0-1) unstable; urgency=low mpd (0.9.0-1) unstable; urgency=low
* Update to 0.9.0 * Update to 0.9.0
......
...@@ -170,9 +170,9 @@ void getConnections(int sock) { ...@@ -170,9 +170,9 @@ void getConnections(int sock) {
fd_set fdsr; fd_set fdsr;
int fd = 0; int fd = 0;
struct timeval tv; struct timeval tv;
tv.tv_sec = tv.tv_usec = 0;
struct sockaddr sockAddr; struct sockaddr sockAddr;
socklen_t socklen = sizeof(sockAddr); socklen_t socklen = sizeof(sockAddr);
tv.tv_sec = tv.tv_usec = 0;
fflush(NULL); fflush(NULL);
FD_ZERO(&fdsr); FD_ZERO(&fdsr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment