From 7f104596939af61bf20ce9efe6408572f2378a80 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Jun 03 2013 10:40:05 +0000 Subject: gssproxy: report an error message on event loop failure. Signed-off-by: Günther Deschner Reviewed-by: Simo Sorce --- 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;