diff options
Diffstat (limited to 'plugins/check_apt.c')
-rw-r--r-- | plugins/check_apt.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/plugins/check_apt.c b/plugins/check_apt.c index 49a7c4f..3da54bc 100644 --- a/plugins/check_apt.c +++ b/plugins/check_apt.c | |||
@@ -7,8 +7,6 @@ | |||
7 | * | 7 | * |
8 | * Original author: Sean Finney | 8 | * Original author: Sean Finney |
9 | * | 9 | * |
10 | * Last Modified: $Date$ | ||
11 | * | ||
12 | * Description: | 10 | * Description: |
13 | * | 11 | * |
14 | * This file contains the check_apt plugin | 12 | * This file contains the check_apt plugin |
@@ -29,12 +27,9 @@ | |||
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 | * | ||
34 | *****************************************************************************/ | 30 | *****************************************************************************/ |
35 | 31 | ||
36 | const char *progname = "check_apt"; | 32 | const char *progname = "check_apt"; |
37 | const char *revision = "$Revision$"; | ||
38 | const char *copyright = "2006-2008"; | 33 | const char *copyright = "2006-2008"; |
39 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 34 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; |
40 | 35 | ||
@@ -159,7 +154,7 @@ int process_arguments (int argc, char **argv) { | |||
159 | print_help(); | 154 | print_help(); |
160 | exit(STATE_OK); | 155 | exit(STATE_OK); |
161 | case 'V': | 156 | case 'V': |
162 | print_revision(progname, revision); | 157 | print_revision(progname, NP_VERSION); |
163 | exit(STATE_OK); | 158 | exit(STATE_OK); |
164 | case 'v': | 159 | case 'v': |
165 | verbose++; | 160 | verbose++; |
@@ -404,7 +399,7 @@ char* construct_cmdline(upgrade_type u, const char *opts){ | |||
404 | void | 399 | void |
405 | print_help (void) | 400 | print_help (void) |
406 | { | 401 | { |
407 | print_revision(progname, revision); | 402 | print_revision(progname, NP_VERSION); |
408 | 403 | ||
409 | printf(_(COPYRIGHT), copyright, email); | 404 | printf(_(COPYRIGHT), copyright, email); |
410 | 405 | ||