summaryrefslogtreecommitdiff
path: root/src/jingle-transport-google.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2009-10-13 15:28:20 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-02-22 14:11:13 +0000
commit6c78ad121e9ee017d6e3c616803e41b924eb50ef (patch)
tree22f340611d6d87c0ae367acd5d2a7c35a10cbf6c /src/jingle-transport-google.c
parent5354de4fc7b9e696eeadabe4b997b3f5f9ab47bd (diff)
Jingle: remove unused SET_FOO macros, and unused varargs capabilities
These are using GNU varargs, which aren't portable to Windows.
Diffstat (limited to 'src/jingle-transport-google.c')
-rw-r--r--src/jingle-transport-google.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/jingle-transport-google.c b/src/jingle-transport-google.c
index 4472e8c3..c81f6210 100644
--- a/src/jingle-transport-google.c
+++ b/src/jingle-transport-google.c
@@ -221,9 +221,7 @@ gabble_jingle_transport_google_class_init (GabbleJingleTransportGoogleClass *cls
}
-#define SET_BAD_REQ(txt...) g_set_error (error, GABBLE_XMPP_ERROR, XMPP_ERROR_BAD_REQUEST, txt)
-#define SET_OUT_ORDER(txt...) g_set_error (error, GABBLE_XMPP_ERROR, XMPP_ERROR_JINGLE_OUT_OF_ORDER, txt)
-#define SET_CONFLICT(txt...) g_set_error (error, GABBLE_XMPP_ERROR, XMPP_ERROR_CONFLICT, txt)
+#define SET_BAD_REQ(txt) g_set_error (error, GABBLE_XMPP_ERROR, XMPP_ERROR_BAD_REQUEST, txt)
static void
parse_candidates (GabbleJingleTransportIface *obj,