mirror of
https://github.com/openssh/openssh-portable.git
synced 2026-01-12 00:04:08 +08:00
upstream: return 0 in void function; spotted by clang -Wextra
OpenBSD-Commit-ID: fe7461c93dfaef98a007a246af837a8275a1e539
This commit is contained in:
committed by
Damien Miller
parent
ecdf9b9f8e
commit
dfd710e4e2
@@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: gss-serv.c,v 1.34 2025/12/08 03:55:22 djm Exp $ */
|
||||
/* $OpenBSD: gss-serv.c,v 1.35 2025/12/22 03:12:05 djm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
|
||||
@@ -334,7 +334,7 @@ ssh_gssapi_storecreds(void)
|
||||
{
|
||||
if (options.gss_deleg_creds == 0) {
|
||||
debug_f("delegate credential is disabled, doing nothing");
|
||||
return 0;
|
||||
return;
|
||||
}
|
||||
|
||||
if (gssapi_client.mech && gssapi_client.mech->storecreds) {
|
||||
|
||||
Reference in New Issue
Block a user