summaryrefslogtreecommitdiffstats
path: root/sftp.c
diff options
context:
space:
mode:
authorguenther@openbsd.org <guenther@openbsd.org>2023-03-08 05:43:12 +0100
committerDarren Tucker <dtucker@dtucker.net>2023-03-08 07:26:53 +0100
commit51875897b81b5c21b80c256a29597916edbde454 (patch)
treea44cfbf3d3eb2a4fc168f18e306cc002e521d32f /sftp.c
parentExtra brackets to prevent warning. (diff)
downloadopenssh-51875897b81b5c21b80c256a29597916edbde454.tar.xz
openssh-51875897b81b5c21b80c256a29597916edbde454.zip
upstream: Delete obsolete /* ARGSUSED */ lint comments.
ok miod@ millert@ OpenBSD-Commit-ID: 7be168a570264d59e96a7d2d22e927d45fee0e4c
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/sftp.c b/sftp.c
index deb975cba..3a2525462 100644
--- a/sftp.c
+++ b/sftp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp.c,v 1.226 2023/02/27 22:12:40 dtucker Exp $ */
+/* $OpenBSD: sftp.c,v 1.227 2023/03/08 04:43:12 guenther Exp $ */
/*
* Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
*
@@ -217,7 +217,6 @@ static const struct CMD cmds[] = {
{ NULL, -1, -1, -1 }
};
-/* ARGSUSED */
static void
killchild(int signo)
{
@@ -232,7 +231,6 @@ killchild(int signo)
_exit(1);
}
-/* ARGSUSED */
static void
suspchild(int signo)
{
@@ -244,7 +242,6 @@ suspchild(int signo)
kill(getpid(), SIGSTOP);
}
-/* ARGSUSED */
static void
cmd_interrupt(int signo)
{
@@ -256,14 +253,12 @@ cmd_interrupt(int signo)
errno = olderrno;
}
-/* ARGSUSED */
static void
read_interrupt(int signo)
{
interrupted = 1;
}
-/*ARGSUSED*/
static void
sigchld_handler(int sig)
{