Put two Autoconf files back since they're not installed by autoreconf -i.
[radsecproxy.git] / fticks.c
index 8d41c4f..c4acac2 100644 (file)
--- a/fticks.c
+++ b/fticks.c
@@ -64,7 +64,6 @@ fticks_configure(struct options *options,
 
     if (reporting == NULL)
        goto out;
-
     if (strcasecmp(reporting, "None") == 0)
        options->fticks_reporting = RSP_FTICKS_REPORTING_NONE;
     else if (strcasecmp(reporting, "Basic") == 0)
@@ -78,6 +77,8 @@ fticks_configure(struct options *options,
        goto out;
     }
 
+    if (mac == NULL)
+       goto out;
     if (strcasecmp(mac, "Static") == 0)
        options->fticks_mac = RSP_FTICKS_MAC_STATIC;
     else if (strcasecmp(mac, "Original") == 0)
@@ -145,7 +146,7 @@ fticks_hashmac(const uint8_t *in,
     uint8_t *p = NULL;
     int i;
 
-    in_copy = calloc(1, strlen(in) + 1);
+    in_copy = calloc(1, strlen((const char *) in) + 1);
     if (in_copy == NULL)
        return -ENOMEM;