diff options
author | Matthias Eble <psychotrahe@users.sourceforge.net> | 2007-07-07 11:55:48 (GMT) |
---|---|---|
committer | Matthias Eble <psychotrahe@users.sourceforge.net> | 2007-07-07 11:55:48 (GMT) |
commit | 2208c1b7f3d0b2d949fb28a88318945d7b917858 (patch) | |
tree | 37884fd2bf7394ccada1fd85add2213ee95d22af | |
parent | 603de749ba37c900ff445b5e1a7fcf3f26a04570 (diff) | |
download | monitoring-plugins-2208c1b7f3d0b2d949fb28a88318945d7b917858.tar.gz |
Changed print_revision output order in utils.pm
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1751 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins-scripts/utils.pm.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-scripts/utils.pm.in b/plugins-scripts/utils.pm.in index d68f309..08776f1 100644 --- a/plugins-scripts/utils.pm.in +++ b/plugins-scripts/utils.pm.in | |||
@@ -34,7 +34,7 @@ sub print_revision ($$) { | |||
34 | my $pluginRevision = shift; | 34 | my $pluginRevision = shift; |
35 | $pluginRevision =~ s/^\$Revision: //; | 35 | $pluginRevision =~ s/^\$Revision: //; |
36 | $pluginRevision =~ s/ \$\s*$//; | 36 | $pluginRevision =~ s/ \$\s*$//; |
37 | print "$commandName (@PACKAGE@ @VERSION@) $pluginRevision\n"; | 37 | print "$commandName v$pluginRevision (@PACKAGE@ @VERSION@)\n"; |
38 | print "@WARRANTY@"; | 38 | print "@WARRANTY@"; |
39 | } | 39 | } |
40 | 40 | ||