From fae05eb17809e31ddb167e2358686d80b0997eff Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Mon, 21 Nov 2016 14:49:03 +0100 Subject: check_radius: Make compiler happy diff --git a/plugins/check_radius.c b/plugins/check_radius.c index b3b8c82..fe84b7c 100644 --- a/plugins/check_radius.c +++ b/plugins/check_radius.c @@ -278,7 +278,7 @@ process_arguments (int argc, char **argv) break; case 'P': /* port */ if (is_intnonneg (optarg)) - port = atoi (optarg); + port = (unsigned short)atoi (optarg); else usage4 (_("Port must be a positive integer")); break; @@ -314,7 +314,7 @@ process_arguments (int argc, char **argv) break; case 't': /* timeout */ if (is_intpos (optarg)) - timeout_interval = atoi (optarg); + timeout_interval = (unsigned)atoi (optarg); else usage2 (_("Timeout interval must be a positive integer"), optarg); break; -- cgit v0.10-9-g596f