]> source.dussan.org Git - tigervnc.git/commitdiff
Change vncsession startup error message
authorPierre Ossman <ossman@cendio.se>
Fri, 11 Mar 2022 07:31:25 +0000 (08:31 +0100)
committerPierre Ossman <ossman@cendio.se>
Fri, 11 Mar 2022 07:31:25 +0000 (08:31 +0100)
We need to get to the point of starting the session script before we
consider things a success. So this can fail in many different ways, not
just the daemonization. Adjust the error message to something more
generic to reflect this.

unix/vncserver/vncsession.c

index f6d2fd59e57cf9803d2a6bb2763fc85eec0633b1..49d68435c284849a9e4d4f2d4b4481250a933bc1 100644 (file)
@@ -81,7 +81,7 @@ begin_daemon(void)
         /* Wait for child to finish startup */
         len = read(fds[0], buf, 1);
         if (len != 1) {
-            fprintf(stderr, "Failure daemonizing\n");
+            fprintf(stderr, "Failed to start session\n");
             _exit(EX_OSERR);
         }