cmd PUTNOTIF time option: handle double values.
authorManuel Luis SanmartĂ­n Rozada <manuel.luis@gmail.com>
Thu, 19 Jun 2014 17:14:53 +0000 (19:14 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Sat, 26 Jul 2014 08:59:40 +0000 (10:59 +0200)
Conflicts:
src/utils_cmd_putnotif.c

src/utils_cmd_putnotif.c

index 7c96508..cba08bf 100644 (file)
@@ -49,10 +49,15 @@ static int set_option_severity (notification_t *n, const char *value)
 
 static int set_option_time (notification_t *n, const char *value)
 {
-  time_t tmp;
-  
-  tmp = (time_t) atoi (value);
-  if (tmp <= 0)
+  char *endptr = NULL;
+  double tmp;
+
+  errno = 0;
+  tmp = strtod (value, &endptr);
+  if ((errno != 0)         /* Overflow */
+      || (endptr == value) /* Invalid string */
+      || (endptr == NULL)  /* This should not happen */
+      || (*endptr != 0))   /* Trailing chars */
     return (-1);
 
   n->time = TIME_T_TO_CDTIME_T (tmp);