artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3a04d5
)
"void" functions should not return anything. From Tim Rice via -portable.
author
dtucker
<dtucker@openbsd.org>
Tue, 11 Jan 2022 02:56:19 +0000
(
02:56
+0000)
committer
dtucker
<dtucker@openbsd.org>
Tue, 11 Jan 2022 02:56:19 +0000
(
02:56
+0000)
usr.bin/ssh/sftp-server.c
patch
|
blob
|
history
diff --git
a/usr.bin/ssh/sftp-server.c
b/usr.bin/ssh/sftp-server.c
index
e13ac96
..
bfa7fc7
100644
(file)
--- a/
usr.bin/ssh/sftp-server.c
+++ b/
usr.bin/ssh/sftp-server.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: sftp-server.c,v 1.13
6 2022/01/08 07:33:54 djm
Exp $ */
+/* $OpenBSD: sftp-server.c,v 1.13
7 2022/01/11 02:56:19 dtucker
Exp $ */
/*
* Copyright (c) 2000-2004 Markus Friedl. All rights reserved.
*
@@
-554,7
+554,7
@@
send_status_errmsg(u_int32_t id, u_int32_t status, const char *errmsg)
static void
send_status(u_int32_t id, u_int32_t status)
{
-
return
send_status_errmsg(id, status, NULL);
+ send_status_errmsg(id, status, NULL);
}
static void