From 46e5c4c8ffcd1569bcd5d04803abaa2ecf3e4cff Mon Sep 17 00:00:00 2001 From: "markus@openbsd.org" Date: Fri, 6 Mar 2020 18:27:50 +0000 Subject: upstream: correct return code; ok djm OpenBSD-Commit-ID: 319d09e3b7f4b2bc920c67244d9ff6426b744810 --- sshsig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshsig.c b/sshsig.c index ef6c4e526..781153fce 100644 --- a/sshsig.c +++ b/sshsig.c @@ -981,7 +981,7 @@ sshsig_find_principals(const char *path, const struct sshkey *sign_key, char *line = NULL; size_t linesize = 0; u_long linenum = 0; - int r, oerrno; + int r = SSH_ERR_INTERNAL_ERROR, oerrno; if ((f = fopen(path, "r")) == NULL) { oerrno = errno; -- cgit v1.2.3