From 75b81cf0f26f5bb7ada583fc434835adf03f8b77 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Wed, 1 Aug 2012 14:26:53 -0300 Subject: [PATCH] qerror: drop QERR_SOCKET_CONNECT_IN_PROGRESS Unused since last commit. Signed-off-by: Luiz Capitulino Reviewed-by: Markus Armbruster --- qerror.c | 4 ---- qerror.h | 3 --- 2 files changed, 7 deletions(-) diff --git a/qerror.c b/qerror.c index 5d3842863f..452ec69188 100644 --- a/qerror.c +++ b/qerror.c @@ -308,10 +308,6 @@ static const QErrorStringTable qerror_table[] = { .error_fmt = QERR_VNC_SERVER_FAILED, .desc = "Could not start VNC server on %(target)", }, - { - .error_fmt = QERR_SOCKET_CONNECT_IN_PROGRESS, - .desc = "Connection can not be completed immediately", - }, { .error_fmt = QERR_SOCKET_CONNECT_FAILED, .desc = "Failed to connect to socket", diff --git a/qerror.h b/qerror.h index de8497d1eb..52ce58dbc2 100644 --- a/qerror.h +++ b/qerror.h @@ -240,9 +240,6 @@ char *qerror_format(const char *fmt, QDict *error); #define QERR_VNC_SERVER_FAILED \ "{ 'class': 'VNCServerFailed', 'data': { 'target': %s } }" -#define QERR_SOCKET_CONNECT_IN_PROGRESS \ - "{ 'class': 'SockConnectInprogress', 'data': {} }" - #define QERR_SOCKET_CONNECT_FAILED \ "{ 'class': 'SockConnectFailed', 'data': {} }"