- (djm) [ssh-keygen.c] Use correct local variable, instead of
   maybe-undefined global "optarg"
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 7dc1080..f910dce 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -1300,7 +1300,7 @@
 	from = xstrdup(timespec);
 	to = strchr(from, ':');
 	if (to == NULL || from == to || *(to + 1) == '\0')
-		fatal("Invalid certificate life specification %s", optarg);
+		fatal("Invalid certificate life specification %s", timespec);
 	*to++ = '\0';
 
 	if (*from == '-' || *from == '+')