diff options
Diffstat (limited to 'plugins/check_time.c')
-rw-r--r-- | plugins/check_time.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/check_time.c b/plugins/check_time.c index f9a292c..ee93816 100644 --- a/plugins/check_time.c +++ b/plugins/check_time.c | |||
@@ -5,8 +5,6 @@ | |||
5 | * License: GPL | 5 | * License: GPL |
6 | * Copyright (c) 1999-2007 Nagios Plugins Development Team | 6 | * Copyright (c) 1999-2007 Nagios Plugins Development Team |
7 | * | 7 | * |
8 | * Last Modified: $Date$ | ||
9 | * | ||
10 | * Description: | 8 | * Description: |
11 | * | 9 | * |
12 | * This file contains the check_time plugin | 10 | * This file contains the check_time plugin |
@@ -27,12 +25,10 @@ | |||
27 | * You should have received a copy of the GNU General Public License | 25 | * You should have received a copy of the GNU General Public License |
28 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 26 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
29 | * | 27 | * |
30 | * $Id$ | ||
31 | * | 28 | * |
32 | *****************************************************************************/ | 29 | *****************************************************************************/ |
33 | 30 | ||
34 | const char *progname = "check_time"; | 31 | const char *progname = "check_time"; |
35 | const char *revision = "$Revision$"; | ||
36 | const char *copyright = "1999-2007"; | 32 | const char *copyright = "1999-2007"; |
37 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 33 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; |
38 | 34 | ||
@@ -237,7 +233,7 @@ process_arguments (int argc, char **argv) | |||
237 | print_help (); | 233 | print_help (); |
238 | exit (STATE_OK); | 234 | exit (STATE_OK); |
239 | case 'V': /* version */ | 235 | case 'V': /* version */ |
240 | print_revision (progname, revision); | 236 | print_revision (progname, NP_VERSION); |
241 | exit (STATE_OK); | 237 | exit (STATE_OK); |
242 | case 'H': /* hostname */ | 238 | case 'H': /* hostname */ |
243 | if (is_host (optarg) == FALSE) | 239 | if (is_host (optarg) == FALSE) |
@@ -335,7 +331,7 @@ print_help (void) | |||
335 | char *myport; | 331 | char *myport; |
336 | asprintf (&myport, "%d", TIME_PORT); | 332 | asprintf (&myport, "%d", TIME_PORT); |
337 | 333 | ||
338 | print_revision (progname, revision); | 334 | print_revision (progname, NP_VERSION); |
339 | 335 | ||
340 | printf ("Copyright (c) 1999 Ethan Galstad\n"); | 336 | printf ("Copyright (c) 1999 Ethan Galstad\n"); |
341 | printf (COPYRIGHT, copyright, email); | 337 | printf (COPYRIGHT, copyright, email); |