diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-11-23 05:38:47 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-11-23 05:38:47 (GMT) |
commit | 6fbd14fea5c111a23d9074d25499991cbfa58f79 (patch) | |
tree | 0c1f5a77cacc664eadd47216b70e3257337484db /plugins/urlize.c | |
parent | 56cf151ae91c5081a99365848a3f060dfe14a68c (diff) | |
download | monitoring-plugins-6fbd14fea5c111a23d9074d25499991cbfa58f79.tar.gz |
Removing CVS/SVN tags and replacing with git-based versioning
For contrib/, full tags have been imported from subversion
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2091 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/urlize.c')
-rw-r--r-- | plugins/urlize.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/urlize.c b/plugins/urlize.c index aeabafd..a362008 100644 --- a/plugins/urlize.c +++ b/plugins/urlize.c | |||
@@ -5,8 +5,6 @@ | |||
5 | * License: GPL | 5 | * License: GPL |
6 | * Copyright (c) 2000-2007 Nagios Plugins Development Team | 6 | * Copyright (c) 2000-2007 Nagios Plugins Development Team |
7 | * | 7 | * |
8 | * Last Modified: $Date$ | ||
9 | * | ||
10 | * Description: | 8 | * Description: |
11 | * | 9 | * |
12 | * This file contains the urlize plugin | 10 | * This file contains the urlize plugin |
@@ -29,12 +27,10 @@ | |||
29 | * You should have received a copy of the GNU General Public License | 27 | * You should have received a copy of the GNU General Public License |
30 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 28 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
31 | * | 29 | * |
32 | * $Id$ | ||
33 | * | 30 | * |
34 | *****************************************************************************/ | 31 | *****************************************************************************/ |
35 | 32 | ||
36 | const char *progname = "urlize"; | 33 | const char *progname = "urlize"; |
37 | const char *revision = "$Revision$"; | ||
38 | const char *copyright = "2000-2006"; | 34 | const char *copyright = "2000-2006"; |
39 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 35 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; |
40 | 36 | ||
@@ -89,7 +85,7 @@ main (int argc, char **argv) | |||
89 | exit (EXIT_SUCCESS); | 85 | exit (EXIT_SUCCESS); |
90 | break; | 86 | break; |
91 | case 'V': /* version */ | 87 | case 'V': /* version */ |
92 | print_revision (progname, revision); | 88 | print_revision (progname, NP_VERSION); |
93 | exit (EXIT_SUCCESS); | 89 | exit (EXIT_SUCCESS); |
94 | break; | 90 | break; |
95 | case 'u': | 91 | case 'u': |
@@ -165,7 +161,7 @@ main (int argc, char **argv) | |||
165 | void | 161 | void |
166 | print_help (void) | 162 | print_help (void) |
167 | { | 163 | { |
168 | print_revision (progname, revision); | 164 | print_revision (progname, NP_VERSION); |
169 | 165 | ||
170 | printf ("Copyright (c) 2000 Karl DeBisschop <kdebisschop@users.sourceforge.net>\n"); | 166 | printf ("Copyright (c) 2000 Karl DeBisschop <kdebisschop@users.sourceforge.net>\n"); |
171 | printf (COPYRIGHT, copyright, email); | 167 | printf (COPYRIGHT, copyright, email); |