1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4-server: exit with status 127 on SIGTERM

this ensures that make test detects a failure if samba is killed by
SIGTERM
This commit is contained in:
Andrew Tridgell 2010-10-02 12:44:28 -07:00
parent b772871f4c
commit 87f0145d07

View File

@ -117,7 +117,7 @@ static void sig_term(int sig)
}
#endif
DEBUG(0,("Exiting pid %d on SIGTERM\n", (int)getpid()));
exit(0);
exit(127);
}
/*