summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-03-04 14:17:22 +1100
committerDamien Miller <djm@mindrot.org>2010-03-04 14:17:22 +1100
commit910f209c1d08b9b91f744c571fbf805206f04729 (patch)
treefb9d6a30a5be082dc563d92552b765bd6cb93ea0
parent386dbc05e9c8c34dde5abe62a7804b4747b0de06 (diff)
downloadopenssh-git-910f209c1d08b9b91f744c571fbf805206f04729.tar.gz
- (djm) [ssh-keygen.c] Use correct local variable, instead of
maybe-undefined global "optarg"
-rw-r--r--ChangeLog4
-rw-r--r--ssh-keygen.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 21417e6b..c5398522 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20100304
+ - (djm) [ssh-keygen.c] Use correct local variable, instead of
+ maybe-undefined global "optarg"
+
20100303
- (djm) [PROTOCOL.certkeys] Add RCS Ident
- OpenBSD CVS Sync
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 7dc10808..f910dce3 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -1300,7 +1300,7 @@ parse_cert_times(char *timespec)
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 == '+')