diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 05:20:15 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 05:20:15 +0000 |
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 43580b6c..8a42a643 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c @@ -22,7 +22,6 @@ * *****************************************************************************/ -/* const char *progname = "check_tcp"; */ #define REVISION "$Revision$" #define DESCRIPTION "Check a TCP port" #define AUTHOR "Ethan Galstad" @@ -65,7 +64,7 @@ int process_arguments (int, char **); void print_usage (void); void print_help (void); -char *progname = NULL; +char *progname = "check_tcp"; char *SERVICE = NULL; char *SEND = NULL; char *EXPECT = NULL; |