X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/02c30a32c6d1aeab0d3bc5f747016041a687c9dd..48224640cb97b694c3ea2f159c3e60d64598ba65:/src/src/arc.c diff --git a/src/src/arc.c b/src/src/arc.c index 80bb30e03..aa0d1c958 100644 --- a/src/src/arc.c +++ b/src/src/arc.c @@ -1605,13 +1605,13 @@ if ((opts = string_nextinlist(&signspec, &sep, NULL, 0))) if (*(s += 6) == '=') if (*++s == '+') { - if (!(expire = (time_t)atoi(++s))) + if (!(expire = (time_t)atoi(CS ++s))) expire = ARC_SIGN_DEFAULT_EXPIRE_DELTA; if (!now) now = time(NULL); expire += now; } else - expire = (time_t)atol(s); + expire = (time_t)atol(CS s); else { if (!now) now = time(NULL);