[master] silence "unused value" warning
This commit is contained in:
@@ -160,6 +160,9 @@ isc_dir_chdir(const char *dirname) {
|
||||
|
||||
isc_result_t
|
||||
isc_dir_chroot(const char *dirname) {
|
||||
#ifdef HAVE_CHROOT
|
||||
void *tmp;
|
||||
#endif
|
||||
|
||||
REQUIRE(dirname != NULL);
|
||||
|
||||
@@ -170,7 +173,9 @@ isc_dir_chroot(const char *dirname) {
|
||||
* may fail to load library in chroot.
|
||||
* Do not report errors if it fails, we do not need any result now.
|
||||
*/
|
||||
getprotobyname("udp") && getservbyname("domain", "udp");
|
||||
tmp = getprotobyname("udp");
|
||||
if (tmp != NULL)
|
||||
(void) getservbyname("domain", "udp");
|
||||
|
||||
if (chroot(dirname) < 0 || chdir("/") < 0)
|
||||
return (isc__errno2result(errno));
|
||||
|
||||
Reference in New Issue
Block a user