summaryrefslogtreecommitdiff
path: root/i3lock.c
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2011-01-15 14:47:06 +0100
committerMichael Stapelberg <michael@stapelberg.de>2011-01-15 14:47:06 +0100
commit53987df490e720af98c1d079e583da5e8228d9c3 (patch)
tree6b8eb09f636de47b73be735e9065fbb73eb4eeb1 /i3lock.c
parent7ba6f073221c11cb6c6bee434b9b3456d6f73074 (diff)
Bugfix: correctly check for errors when connecting to X11
Diffstat (limited to 'i3lock.c')
-rw-r--r--i3lock.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/i3lock.c b/i3lock.c
index 0f77c4a..1f5e8cd 100644
--- a/i3lock.c
+++ b/i3lock.c
@@ -347,8 +347,9 @@ int main(int argc, char *argv[]) {
errx(EXIT_FAILURE, "PAM: %s\n", pam_strerror(pam_handle, ret));
/* Initialize connection to X11 */
- if ((conn = xcb_connect(NULL, &screen)) == NULL)
- err(EXIT_FAILURE, "xcb_connect()");
+ if ((conn = xcb_connect(NULL, &screen)) == NULL ||
+ xcb_connection_has_error(conn))
+ errx(EXIT_FAILURE, "Could not connect to X11, maybe you need to set DISPLAY?");
if (!dont_fork) {
/* In the parent process, we exit */