aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins-root/check_dhcp.c2
-rw-r--r--plugins/common.h5
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c
index 528298e5..069d0c4d 100644
--- a/plugins-root/check_dhcp.c
+++ b/plugins-root/check_dhcp.c
@@ -1196,7 +1196,7 @@ static int dl_bind(int fd, int sap, u_char *addr){
bind_req->dl_xidtest_flg = 0;
put_ctrl(fd, sizeof(dl_bind_req_t), 0);
get_msg(fd);
- if GOT_ERR == check_ctrl(DL_BIND_ACK)){
+ if (GOT_ERR == check_ctrl(DL_BIND_ACK)){
printf(_("Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n"), strerror(errno));
exit(STATE_UNKNOWN);
}
diff --git a/plugins/common.h b/plugins/common.h
index 47252aa4..ac3b8339 100644
--- a/plugins/common.h
+++ b/plugins/common.h
@@ -114,6 +114,11 @@
#include <locale.h>
#endif
+/* Fixes "Cannot use swapctl in the large files compilation environment" error on Solaris */
+#ifdef _FILE_OFFSET_BITS
+#undef _FILE_OFFSET_BITS
+#endif
+
#ifdef HAVE_DECL_SWAPCTL
# ifdef HAVE_SYS_SWAP_H
# include <sys/swap.h>