diff options
author | 2019-10-31 21:28:27 +0000 | |
---|---|---|
committer | 2019-10-31 21:28:27 +0000 | |
commit | 2aad73f1cf362a4d5d58b848582349fefa11bfcd (patch) | |
tree | 354848c4382fbc2f32ea866aa4071d8f4971ee32 /usr.bin/ssh/ssh-keygen.c | |
parent | Refactor signing - use sshkey_sign for everything, including the new (diff) | |
download | wireguard-openbsd-2aad73f1cf362a4d5d58b848582349fefa11bfcd.tar.xz wireguard-openbsd-2aad73f1cf362a4d5d58b848582349fefa11bfcd.zip |
fix -Wshadow warning
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 5b4012191b4..1da7b22fca9 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.358 2019/10/31 21:23:19 djm Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.359 2019/10/31 21:28:27 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1690,7 +1690,7 @@ load_pkcs11_key(char *path) static int agent_signer(struct sshkey *key, u_char **sigp, size_t *lenp, const u_char *data, size_t datalen, - const char *alg, const char *sk_provider, u_int compat, void *ctx) + const char *alg, const char *provider, u_int compat, void *ctx) { int *agent_fdp = (int *)ctx; |