mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
b8392b2dae
PR: ports/96895 Submitted by: Douglas K. Rand <rand@meridian-enviro.com> (maintainer)
30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
--- nc.cpp.orig Tue May 2 09:29:37 2006
|
|
+++ nc.cpp Sat May 6 21:42:59 2006
|
|
@@ -258,7 +258,7 @@
|
|
|
|
printf("-f file what file to monitor (usuallly:\n");
|
|
printf("-F host:port connect to a host for retrieving the status.log information\n");
|
|
- printf(" /usr/local/nagios/var/status.log, look for status_file in\n");
|
|
+ printf(" /var/spool/nagios/status.log, look for status_file in\n");
|
|
printf(" the nagios.cfg file\n");
|
|
printf("-i x check interval (in seconds)\n");
|
|
printf("-a list also the services for hosts that are down\n");
|
|
@@ -288,7 +288,7 @@
|
|
WINDOW *win;
|
|
int sw;
|
|
|
|
- char *status_log = "/usr/local/nagios/var/status.log";
|
|
+ char *status_log = "/var/spool/nagios/status.log";
|
|
int interval = 5;
|
|
char list_all_problems = 0;
|
|
char always_notify = 0;
|
|
@@ -390,7 +390,7 @@
|
|
wattroff(win, COLOR_PAIR(MY_DRAW));
|
|
|
|
if (file_mode == 0) /* file */
|
|
- fd = open64(status_log, O_RDONLY);
|
|
+ fd = open(status_log, O_RDONLY);
|
|
else
|
|
fd = connect_to(status_log);
|
|
|