artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ce164e
)
missing initialisation for oerrno
author
djm
<djm@openbsd.org>
Sun, 28 Nov 2021 07:10:18 +0000
(07:10 +0000)
committer
djm
<djm@openbsd.org>
Sun, 28 Nov 2021 07:10:18 +0000
(07:10 +0000)
usr.bin/ssh/sshsig.c
patch
|
blob
|
history
diff --git
a/usr.bin/ssh/sshsig.c
b/usr.bin/ssh/sshsig.c
index
304c428
..
2d9f5ca
100644
(file)
--- a/
usr.bin/ssh/sshsig.c
+++ b/
usr.bin/ssh/sshsig.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: sshsig.c,v 1.2
4 2021/11/27 07:14:46
djm Exp $ */
+/* $OpenBSD: sshsig.c,v 1.2
5 2021/11/28 07:10:18
djm Exp $ */
/*
* Copyright (c) 2019 Google LLC
*
@@
-1056,7
+1056,7
@@
sshsig_match_principals(const char *path, const char *principal,
char *found, *line = NULL, **principals = NULL, **tmp;
size_t i, nprincipals = 0, linesize = 0;
u_long linenum = 0;
- int oerrno, r, ret = 0;
+ int oerrno
= 0
, r, ret = 0;
if (principalsp != NULL)
*principalsp = NULL;