summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--plugins/check_hpjd.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index f2898ab..d48e1d8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,9 @@
1This file documents the major additions and syntax changes between releases. 1This file documents the major additions and syntax changes between releases.
2 2
32.1
4 ENHANCEMENTS
5 New check_hpjd -p option for port specification (abrist)
6
32.0 11th July 2014 72.0 11th July 2014
4 ENHANCEMENTS 8 ENHANCEMENTS
5 check_mailq now supports auto detection of qmail, postfix, exim and nullmailer with 9 check_mailq now supports auto detection of qmail, postfix, exim and nullmailer with
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c
index 1ee4d13..5fe0698 100644
--- a/plugins/check_hpjd.c
+++ b/plugins/check_hpjd.c
@@ -344,7 +344,7 @@ process_arguments (int argc, char **argv)
344 break; 344 break;
345 case 'p': 345 case 'p':
346 if (!is_intpos(optarg)) 346 if (!is_intpos(optarg))
347 usage2 (_("Port must be a positive integer"), optarg); 347 usage2 (_("Port must be a positive short integer"), optarg);
348 else 348 else
349 port = atoi(optarg); 349 port = atoi(optarg);
350 break; 350 break;