diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 05:20:15 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 05:20:15 (GMT) |
commit | cdf54898cf20d4f715d03bf129bdc9658d98784b (patch) | |
tree | ca0ad410d8d5b74471350fb540ed29d15461de38 /plugins/check_tcp.c | |
parent | 2350599a4c8a3fd822d8cedd67da5af03b265ea8 (diff) | |
download | monitoring-plugins-cdf54898cf20d4f715d03bf129bdc9658d98784b.tar.gz |
cleanup progname assignment
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@242 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_tcp.c')
-rw-r--r-- | plugins/check_tcp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index 43580b6..8a42a64 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c | |||
@@ -22,7 +22,6 @@ | |||
22 | * | 22 | * |
23 | *****************************************************************************/ | 23 | *****************************************************************************/ |
24 | 24 | ||
25 | /* const char *progname = "check_tcp"; */ | ||
26 | #define REVISION "$Revision$" | 25 | #define REVISION "$Revision$" |
27 | #define DESCRIPTION "Check a TCP port" | 26 | #define DESCRIPTION "Check a TCP port" |
28 | #define AUTHOR "Ethan Galstad" | 27 | #define AUTHOR "Ethan Galstad" |
@@ -65,7 +64,7 @@ int process_arguments (int, char **); | |||
65 | void print_usage (void); | 64 | void print_usage (void); |
66 | void print_help (void); | 65 | void print_help (void); |
67 | 66 | ||
68 | char *progname = NULL; | 67 | char *progname = "check_tcp"; |
69 | char *SERVICE = NULL; | 68 | char *SERVICE = NULL; |
70 | char *SEND = NULL; | 69 | char *SEND = NULL; |
71 | char *EXPECT = NULL; | 70 | char *EXPECT = NULL; |