]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: remove trailing period characters from pub/priv key
authordjm@openbsd.org <djm@openbsd.org>
Thu, 23 Jan 2020 07:54:04 +0000 (07:54 +0000)
committerDarren Tucker <dtucker@dtucker.net>
Thu, 23 Jan 2020 10:46:58 +0000 (21:46 +1100)
pathnames - they make them needlessly more difficult to cut and paste without
error; ok markus@ & dtucker@

OpenBSD-Commit-ID: abdcfd1a5723fcac0711feee7665edc66ae2335a

ssh-keygen.c

index eebd89a276dfcd59377533fb7b7bf843cc45ce05..ce94a5ab03a9ad48b001374a8fd2d567be93df7c 100644 (file)
@@ -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
@@ -3642,7 +3642,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);
        }
 
@@ -3659,7 +3659,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);