summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ssh-keygen.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a733c295..9b07eddd2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120070114
2 - (dtucker) [ssh-keygen.c] ac -> argv to match earlier sync.
3
120070105 420070105
2 - (djm) OpenBSD CVS Sync 5 - (djm) OpenBSD CVS Sync
3 - deraadt@cvs.openbsd.org 2006/11/14 19:41:04 6 - deraadt@cvs.openbsd.org 2006/11/14 19:41:04
@@ -2661,4 +2664,4 @@
2661 OpenServer 6 and add osr5bigcrypt support so when someone migrates 2664 OpenServer 6 and add osr5bigcrypt support so when someone migrates
2662 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 2665 passwords between UnixWare and OpenServer they will still work. OK dtucker@
2663 2666
2664$Id: ChangeLog,v 1.4602 2007/01/05 05:31:02 djm Exp $ 2667$Id: ChangeLog,v 1.4603 2007/01/13 23:19:59 dtucker Exp $
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 4c5b14005..670024b2e 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -1070,7 +1070,7 @@ main(int argc, char **argv)
1070 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */ 1070 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1071 sanitise_stdfd(); 1071 sanitise_stdfd();
1072 1072
1073 __progname = ssh_get_progname(av[0]); 1073 __progname = ssh_get_progname(argv[0]);
1074 1074
1075 SSLeay_add_all_algorithms(); 1075 SSLeay_add_all_algorithms();
1076 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1); 1076 log_init(argv[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);