You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
667 B
21 lines
667 B
diff -up nfs-utils-1.3.0/utils/statd/sm-notify.c.orig nfs-utils-1.3.0/utils/statd/sm-notify.c |
|
--- nfs-utils-1.3.0/utils/statd/sm-notify.c.orig 2017-04-27 14:10:28.866713955 -0400 |
|
+++ nfs-utils-1.3.0/utils/statd/sm-notify.c 2017-04-27 14:10:50.454363993 -0400 |
|
@@ -28,6 +28,9 @@ |
|
#include <netdb.h> |
|
#include <errno.h> |
|
#include <grp.h> |
|
+#include <netinet/in.h> |
|
+#include <arpa/nameser.h> |
|
+#include <resolv.h> |
|
|
|
#include "conffile.h" |
|
#include "sockaddr.h" |
|
@@ -91,6 +94,7 @@ smn_lookup(const char *name) |
|
}; |
|
int error; |
|
|
|
+ res_init(); |
|
error = getaddrinfo(name, NULL, &hint, &ai); |
|
if (error != 0) { |
|
xlog(D_GENERAL, "getaddrinfo(3): %s", gai_strerror(error));
|
|
|