git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/nagios-plugins-contrib-24.20190301~bpo9+1/debian/patches/check_uptime/missing_backslash
blob: e49d276c2422715f4f2679d87d466539e79cd062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/check_uptime/check_uptime b/check_uptime/check_uptime
index e1e5b99..41b7f26 100644
--- a/check_uptime/check_uptime
+++ b/check_uptime/check_uptime
@@ -540,7 +540,7 @@ if ($check_type==1) {  # local
   elsif ($uptime_output =~ /up\s+(\d+)\s+min/) {
      ($days, $hrs, $mins) = (0,0,$1);
   }
-  elsif ($uptime_output =~ /up\s+(\d+)s+days?,s+(\d+)s+min/) {
+  elsif ($uptime_output =~ /up\s+(\d+)\s+days?,\s+(\d+)\s+min/) {
      ($days, $hrs, $mins) = ($1,0,$2);
   }
   else {
diff --git a/dsa/checks/dsa-check-cert-expire-dir b/dsa/checks/dsa-check-cert-expire-dir
old mode 100755
new mode 100644