From: Andre Noll <maan@systemlinux.org>
Date: Sun, 7 Oct 2007 19:07:53 +0000 (+0200)
Subject: Include error text of E_RECV_SYNTAX in para_audiod.
X-Git-Tag: v0.2.17~5
X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=106fa4a35ebefc81f2118f768ffb37ce3cbb0972;p=paraslash.git

Include error text of E_RECV_SYNTAX in para_audiod.

audiod uses E_RECV_SYNTAX, which belonged to recv which is
not contained in audiod. Move it to recv_common instead.
---

diff --git a/error.h b/error.h
index 060268db..5d61db21 100644
--- a/error.h
+++ b/error.h
@@ -78,8 +78,7 @@ enum para_subsystem {
 #define ORTP_SEND_ERRORS
 #define GUI_ERRORS
 #define RINGBUFFER_ERRORS
-
-
+#define RECV_ERRORS
 
 extern const char **para_errlist[];
 /** \endcond */
@@ -165,11 +164,8 @@ extern const char **para_errlist[];
 	PARA_ERROR(HTTP_RECV_OVERRUN, "http_recv: outout buffer overrun"), \
 
 
-#define RECV_ERRORS \
-	PARA_ERROR(RECV_SYNTAX, "recv syntax error"), \
-
-
 #define RECV_COMMON_ERRORS \
+	PARA_ERROR(RECV_SYNTAX, "recv syntax error"), \
 
 
 #define AUDIOD_ERRORS \