diff options
| author | 2020-01-23 07:54:04 +0000 | |
|---|---|---|
| committer | 2020-01-23 07:54:04 +0000 | |
| commit | 797c5ee1e49c5d1b2eee80fe3faf84386ce79039 (patch) | |
| tree | 2c5f488550589c36455266c9f7263313895a3909 /usr.bin/ssh/ssh-keygen.c | |
| parent | Use a consistant idiom/format when declaring scsi_adapter structures (diff) | |
| download | wireguard-openbsd-797c5ee1e49c5d1b2eee80fe3faf84386ce79039.tar.xz wireguard-openbsd-797c5ee1e49c5d1b2eee80fe3faf84386ce79039.zip | |
remove trailing period characters from pub/priv key pathnames -
they make them needlessly more difficult to cut and paste without
error; ok markus@ & dtucker@
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
| -rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 635821d7309..faafb2a9b4f 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.386 2020/01/23 02:43:48 djm Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.387 2020/01/23 07:54:04 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -3619,7 +3619,7 @@ main(int argc, char **argv) sshkey_free(private); if (!quiet) { - printf("Your identification has been saved in %s.\n", + printf("Your identification has been saved in %s\n", identity_file); } @@ -3636,7 +3636,7 @@ main(int argc, char **argv) SSH_FP_RANDOMART); if (fp == NULL || ra == NULL) fatal("sshkey_fingerprint failed"); - printf("Your public key has been saved in %s.\n", + printf("Your public key has been saved in %s\n", identity_file); printf("The key fingerprint is:\n"); printf("%s %s\n", fp, comment); |
