소스 검색

Change vncsession startup error message

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.
tags/v1.12.90
Pierre Ossman 2 년 전
부모
커밋
adc4570b19
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      unix/vncserver/vncsession.c

+ 1
- 1
unix/vncserver/vncsession.c 파일 보기

@@ -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);
}


Loading…
취소
저장