summaryrefslogtreecommitdiffstats
path: root/plugins/check_tcp.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-01-16 05:20:15 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-01-16 05:20:15 (GMT)
commitcdf54898cf20d4f715d03bf129bdc9658d98784b (patch)
treeca0ad410d8d5b74471350fb540ed29d15461de38 /plugins/check_tcp.c
parent2350599a4c8a3fd822d8cedd67da5af03b265ea8 (diff)
downloadmonitoring-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.c3
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 **);
65void print_usage (void); 64void print_usage (void);
66void print_help (void); 65void print_help (void);
67 66
68char *progname = NULL; 67char *progname = "check_tcp";
69char *SERVICE = NULL; 68char *SERVICE = NULL;
70char *SEND = NULL; 69char *SEND = NULL;
71char *EXPECT = NULL; 70char *EXPECT = NULL;