mryan1539 opened a new pull request, #166: URL: https://github.com/apache/commons-daemon/pull/166
The signal handler was being assigned to the sa_handler member of the sigaction struct, which is incorrect; it should be assigned to the sa_sigaction member. The sa_handler is only for using the default handler or ignoring the signal. This worked only because the two fields are genrally a union, but new enough compilers will flag this as an error. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
