]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Fix the prototype of the stub function in noshare.c.
authorSimon Tatham <anakin@pobox.com>
Tue, 22 Apr 2014 17:53:50 +0000 (17:53 +0000)
committerSimon Tatham <anakin@pobox.com>
Tue, 22 Apr 2014 17:53:50 +0000 (17:53 +0000)
It's an old prototype from part way through the development of
connection sharing, which I must have forgotten to fix because by the
time I changed the prototype no platform was using noshare.c any more.

[originally from svn r10183]

noshare.c

index 7412f840f1f15bbc056f83ee10b2478fa9151059..9a8884541fc9bc6bfaffc66bd30c428abda95d90 100644 (file)
--- a/noshare.c
+++ b/noshare.c
@@ -14,7 +14,8 @@
 
 int platform_ssh_share(const char *name, Conf *conf,
                        Plug downplug, Plug upplug, Socket *sock,
-                       char **logtext)
+                       char **logtext, char **ds_err, char **us_err,
+                       int can_upstream, int can_downstream)
 {
     return SHARE_NONE;
 }