9e917f864c
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/nfs-utils#ae3700f20b5680274b29ff27c2f54879b44ab34b
22 lines
667 B
Diff
22 lines
667 B
Diff
diff -up nfs-utils-2.1.1/utils/statd/sm-notify.c.orig nfs-utils-2.1.1/utils/statd/sm-notify.c
|
|
--- nfs-utils-2.1.1/utils/statd/sm-notify.c.orig 2017-04-26 12:46:56.511359133 -0400
|
|
+++ nfs-utils-2.1.1/utils/statd/sm-notify.c 2017-04-26 12:47:18.155277994 -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));
|