From 7f104596939af61bf20ce9efe6408572f2378a80 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 31 May 2013 19:51:59 +0200 Subject: gssproxy: report an error message on event loop failure. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Deschner Reviewed-by: Simo Sorce --- proxy/src/gssproxy.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proxy/src/gssproxy.c b/proxy/src/gssproxy.c index 0936407..1fca922 100644 --- a/proxy/src/gssproxy.c +++ b/proxy/src/gssproxy.c @@ -103,6 +103,8 @@ int main(int argc, const char *argv[]) vctx = init_event_loop(); if (!vctx) { + fprintf(stderr, "Failed to initialize event loop. " + "Is there at least one libverto backend installed?\n"); return 1; } gpctx->vctx = vctx; -- cgit