<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monitoring-plugins/plugins, branch v2.3.3</title>
<subtitle>Monitoring Plugins
</subtitle>
<id>https://www.monitoring-plugins.org/repositories/monitoring-plugins/atom?h=v2.3.3</id>
<link rel='self' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/atom?h=v2.3.3'/>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/'/>
<updated>2023-01-30T12:33:46Z</updated>
<entry>
<title>check_http: Add space for ending NULL byte in array for chunked encoding</title>
<updated>2023-01-30T12:33:46Z</updated>
<author>
<name>Lorenz Kästle</name>
<email>12514511+RincewindsHat@users.noreply.github.com</email>
</author>
<published>2023-01-30T12:33:46Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=d3fbcd122012af7733de3b80a692f79ad69057b2'/>
<id>urn:sha1:d3fbcd122012af7733de3b80a692f79ad69057b2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>check_http: Fix memory reallocation error in chunk decoding logic</title>
<updated>2023-01-30T11:45:20Z</updated>
<author>
<name>Lorenz Kästle</name>
<email>12514511+RincewindsHat@users.noreply.github.com</email>
</author>
<published>2023-01-30T11:45:20Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=d9528c265b96a5a0f0c2e43ac74ab3921a2987e1'/>
<id>urn:sha1:d9528c265b96a5a0f0c2e43ac74ab3921a2987e1</id>
<content type='text'>
This patch should fix an error with the way memory reallocation was
used, which resulted in "realloc(): invalid next size".
It is not completely clear to me as to what caused this problem, but
apparently one can not depend handing a pointer to "realloc(3)" and
expect that it still works afterwards, but one should/must use the one
returned by the function.

Also this patch replaces a variable which was used to remember the
position in the array by just computing that from the current values.
</content>
</entry>
<entry>
<title>check_disk: Clarify usage possibilites  (#1745)</title>
<updated>2023-01-20T11:08:15Z</updated>
<author>
<name>Lorenz</name>
<email>12514511+RincewindsHat@users.noreply.github.com</email>
</author>
<published>2023-01-20T11:08:15Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=67b472f9d1d29b9de5312c46f13ca4f5a656c4da'/>
<id>urn:sha1:67b472f9d1d29b9de5312c46f13ca4f5a656c4da</id>
<content type='text'>
* Clarify usage possibilites of check_disk

* Remove superfluous newlines

Co-authored-by: waja &lt;waja@users.noreply.github.com&gt;</content>
</entry>
<entry>
<title>fix check_snmp regex matches</title>
<updated>2023-01-20T07:57:56Z</updated>
<author>
<name>Sven Nierlein</name>
<email>sven@nierlein.de</email>
</author>
<published>2023-01-19T22:29:01Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=f4930aee28ccb664691809e7dcc9198eb81429c5'/>
<id>urn:sha1:f4930aee28ccb664691809e7dcc9198eb81429c5</id>
<content type='text'>
the multiplier function always tried to extract a number, even if the result
is a string because of using a mib.

before:
```
./check_snmp -H hostname -P2c -c public -o IF-MIB::ifAdminStatus.11466 -vvv -r 0
/usr/bin/snmpget -Le -t 10 -r 5 -m ALL -v 2c [context] [authpriv] 10.0.13.11:161 IF-MIB::ifAdminStatus.11466
IF-MIB::ifAdminStatus.11466 = INTEGER: up(1)
Processing oid 1 (line 1)
  oidname: IF-MIB::ifAdminStatus.11466
  response:  = INTEGER: up(1)
SNMP OK - 0 | IF-MIB::ifAdminStatus.11466=0;;
```

the regexp 0 matches, even if the actual result is "up(1)".

after this patch:
```
./check_snmp -H hostname -P2c -c public -o IF-MIB::ifAdminStatus.11466 -vvv -r 0
/usr/bin/snmpget -Le -t 10 -r 5 -m ALL -v 2c [context] [authpriv] 10.0.13.11:161 IF-MIB::ifAdminStatus.11466
IF-MIB::ifAdminStatus.11466 = INTEGER: up(1)
Processing oid 1 (line 1)
  oidname: IF-MIB::ifAdminStatus.11466
  response:  = INTEGER: up(1)
SNMP CRITICAL - *up(1)* |
```
</content>
</entry>
<entry>
<title>Fixing spelling errors (#1826)</title>
<updated>2023-01-17T14:42:54Z</updated>
<author>
<name>waja</name>
<email>waja@users.noreply.github.com</email>
</author>
<published>2023-01-17T14:42:54Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=72147140ed6c9a06db722930e893c90a230e6da9'/>
<id>urn:sha1:72147140ed6c9a06db722930e893c90a230e6da9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Check apt usage (#1793)</title>
<updated>2023-01-08T16:23:53Z</updated>
<author>
<name>Lorenz</name>
<email>12514511+RincewindsHat@users.noreply.github.com</email>
</author>
<published>2023-01-08T16:23:53Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=0899e41f5075d661153eb2c77ace1734a8f66bfa'/>
<id>urn:sha1:0899e41f5075d661153eb2c77ace1734a8f66bfa</id>
<content type='text'>
* Remove trailing whitespaces

* Use real booleans

* Fix comment

* Put upgrade options in the root sections

Co-authored-by: waja &lt;waja@users.noreply.github.com&gt;</content>
</entry>
<entry>
<title>tests: fix chunked encoding test server</title>
<updated>2023-01-07T17:34:46Z</updated>
<author>
<name>Sven Nierlein</name>
<email>sven@nierlein.de</email>
</author>
<published>2022-12-22T13:58:01Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=07561a67abb02688955433db5b4a38b23523a754'/>
<id>urn:sha1:07561a67abb02688955433db5b4a38b23523a754</id>
<content type='text'>
</content>
</entry>
<entry>
<title>check_http/check_curl: add chunked encoding test</title>
<updated>2023-01-07T17:34:46Z</updated>
<author>
<name>Sven Nierlein</name>
<email>sven@nierlein.de</email>
</author>
<published>2022-12-22T13:06:08Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=c256af44fb23a4749faa5f3fce167a9d9a4367d7'/>
<id>urn:sha1:c256af44fb23a4749faa5f3fce167a9d9a4367d7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Reformat a part to increase readability</title>
<updated>2023-01-07T17:34:46Z</updated>
<author>
<name>RincewindsHat</name>
<email>12514511+RincewindsHat@users.noreply.github.com</email>
</author>
<published>2022-12-22T12:16:19Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=6ed7a75c3b4565af54b8fd4d96225a36a705a0fd'/>
<id>urn:sha1:6ed7a75c3b4565af54b8fd4d96225a36a705a0fd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Undo clang formatting</title>
<updated>2023-01-07T17:34:46Z</updated>
<author>
<name>RincewindsHat</name>
<email>12514511+RincewindsHat@users.noreply.github.com</email>
</author>
<published>2022-12-22T10:40:19Z</published>
<link rel='alternate' type='text/html' href='https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=67d10625307a1bcd5def7cc298314706cef78182'/>
<id>urn:sha1:67d10625307a1bcd5def7cc298314706cef78182</id>
<content type='text'>
</content>
</entry>
</feed>
