aboutsummaryrefslogtreecommitdiffstats
path: root/src/listen.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2005-03-19 12:39:50 +0000
committerWarren Dukes <warren.dukes@gmail.com>2005-03-19 12:39:50 +0000
commit7ecd93e73ec77db3169fb83d1a1ca72a51ca61c7 (patch)
tree19fb365902dcde078ce5566b5156b2f050e8e7be /src/listen.c
parenta4a3fef09c223cde327c84d81238760959848c05 (diff)
downloadmpd-7ecd93e73ec77db3169fb83d1a1ca72a51ca61c7.tar.gz
mpd-7ecd93e73ec77db3169fb83d1a1ca72a51ca61c7.tar.xz
mpd-7ecd93e73ec77db3169fb83d1a1ca72a51ca61c7.zip
fix a spelling error in a debug msg
git-svn-id: https://svn.musicpd.org/mpd/trunk@3103 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/listen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/listen.c b/src/listen.c
index ebf33bc18..33d035a3c 100644
--- a/src/listen.c
+++ b/src/listen.c
@@ -210,7 +210,7 @@ void closeAllListenSockets() {
DEBUG("closeAllListenSockets called\n");
for(i=0; i<numberOfListenSockets; i++) {
- DEBUG("closing listen scoket %i\n", i);
+ DEBUG("closing listen socket %i\n", i);
while(close(listenSockets[i]) < 0 && errno==EINTR);
}