summaryrefslogtreecommitdiffstats
path: root/monitor_fdpass.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2007-09-17 04:04:08 +0200
committerDamien Miller <djm@mindrot.org>2007-09-17 04:04:08 +0200
commit54fd7cf2db5327f304825e0f9aaf9af5a490a75f (patch)
tree37d1a37a4ff6a5a7b6e774937ba3703edca7bc1a /monitor_fdpass.h
parent - djm@cvs.openbsd.org 2007/08/23 03:23:26 (diff)
downloadopenssh-54fd7cf2db5327f304825e0f9aaf9af5a490a75f.tar.xz
openssh-54fd7cf2db5327f304825e0f9aaf9af5a490a75f.zip
- djm@cvs.openbsd.org 2007/09/04 03:21:03
[clientloop.c monitor.c monitor_fdpass.c monitor_fdpass.h] [monitor_wrap.c ssh.c] make file descriptor passing code return an error rather than call fatal() when it encounters problems, and use this to make session multiplexing masters survive slaves failing to pass all stdio FDs; ok markus@
Diffstat (limited to 'monitor_fdpass.h')
-rw-r--r--monitor_fdpass.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor_fdpass.h b/monitor_fdpass.h
index 12c67ec2d..a4b1f6358 100644
--- a/monitor_fdpass.h
+++ b/monitor_fdpass.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor_fdpass.h,v 1.3 2006/03/25 22:22:43 djm Exp $ */
+/* $OpenBSD: monitor_fdpass.h,v 1.4 2007/09/04 03:21:03 djm Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
@@ -28,7 +28,7 @@
#ifndef _MM_FDPASS_H_
#define _MM_FDPASS_H_
-void mm_send_fd(int, int);
+int mm_send_fd(int, int);
int mm_receive_fd(int);
#endif /* _MM_FDPASS_H_ */