diff options
Diffstat (limited to 'plugins-root/check_dhcp.c')
-rw-r--r-- | plugins-root/check_dhcp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c index 8559d63..7cb2d30 100644 --- a/plugins-root/check_dhcp.c +++ b/plugins-root/check_dhcp.c | |||
@@ -250,10 +250,13 @@ int main(int argc, char **argv){ | |||
250 | int dhcp_socket; | 250 | int dhcp_socket; |
251 | int result = STATE_UNKNOWN; | 251 | int result = STATE_UNKNOWN; |
252 | 252 | ||
253 | /* this plugin almost certainly needs root permissions. */ | ||
254 | np_warn_if_not_root(); | ||
255 | |||
253 | setlocale (LC_ALL, ""); | 256 | setlocale (LC_ALL, ""); |
254 | bindtextdomain (PACKAGE, LOCALEDIR); | 257 | bindtextdomain (PACKAGE, LOCALEDIR); |
255 | textdomain (PACKAGE); | 258 | textdomain (PACKAGE); |
256 | 259 | ||
257 | if(process_arguments(argc,argv)!=OK){ | 260 | if(process_arguments(argc,argv)!=OK){ |
258 | usage4 (_("Could not parse arguments")); | 261 | usage4 (_("Could not parse arguments")); |
259 | } | 262 | } |