We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5758b1d commit 95f3dd2Copy full SHA for 95f3dd2
ssh-keygen.c
@@ -1543,7 +1543,7 @@ do_change_comment(struct passwd *pw)
1543
strlcat(identity_file, ".pub", sizeof(identity_file));
1544
f = fopen(identity_file, "w");
1545
if (f == NULL)
1546
- fatal("fdopen %s failed: %s", identity_file, strerror(errno));
+ fatal("fopen %s failed: %s", identity_file, strerror(errno));
1547
if ((r = sshkey_write(public, f)) != 0)
1548
fatal("write key failed: %s", ssh_err(r));
1549
sshkey_free(public);
0 commit comments