##// END OF EJS Templates
chg: silently inherit server exit code...
Jun Wu -
r28477:194a6cd8 default
parent child Browse files
Show More
@@ -252,7 +252,8 b' static hgclient_t *retryconnectcmdserver'
252
252
253 cleanup:
253 cleanup:
254 if (WIFEXITED(pst)) {
254 if (WIFEXITED(pst)) {
255 abortmsg("cmdserver exited with status %d", WEXITSTATUS(pst));
255 debugmsg("cmdserver exited with status %d", WEXITSTATUS(pst));
256 exit(WEXITSTATUS(pst));
256 } else if (WIFSIGNALED(pst)) {
257 } else if (WIFSIGNALED(pst)) {
257 abortmsg("cmdserver killed by signal %d", WTERMSIG(pst));
258 abortmsg("cmdserver killed by signal %d", WTERMSIG(pst));
258 } else {
259 } else {
General Comments 0
You need to be logged in to leave comments. Login now