summaryrefslogtreecommitdiff
path: root/lib/ssh/doc/src/ssh.xml
diff options
context:
space:
mode:
authorHans Nilsson <hans@erlang.org>2019-09-27 10:17:05 +0200
committerHans Nilsson <hans@erlang.org>2019-09-27 10:17:05 +0200
commitaaf4c0f19b6eb6939e95464ab2194d6d09a3a14c (patch)
treea4b8bac78afbe6a7a1112807a15c488ac9a7e36d /lib/ssh/doc/src/ssh.xml
parent78aeafa8ec1e02dcf2ecc4fb4503bb6c8a4d65fe (diff)
parent46b592378e5427d2aa04822f4d4a49f32533b349 (diff)
downloaderlang-aaf4c0f19b6eb6939e95464ab2194d6d09a3a14c.tar.gz
Merge branch 'maint'
* maint: ssh: Fix bad exit status code (4294967295 -> 255)
Diffstat (limited to 'lib/ssh/doc/src/ssh.xml')
-rw-r--r--lib/ssh/doc/src/ssh.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/doc/src/ssh.xml b/lib/ssh/doc/src/ssh.xml
index 6941d6b59c..d58b640961 100644
--- a/lib/ssh/doc/src/ssh.xml
+++ b/lib/ssh/doc/src/ssh.xml
@@ -400,13 +400,13 @@
<datatype>
<name name="exec_result"/>
<desc>
- <p>This option changes how the daemon execute exec-requests from clients. The term in the return value
+ <p>This option changes how the daemon executes exec-requests from clients. The term in the return value
is formatted to a string if it is a non-string type. No trailing newline is added in the ok-case.
</p>
<p>Error texts are returned on channel-type 1 which usually is piped to <c>stderr</c> on e.g Linux systems.
Texts from a successful execution are returned on channel-type 0 and
will in similar manner be piped to <c>stdout</c>. The exit-status code
- is set to 0 for success and -1 for errors. The exact results presented on the client side depends on the
+ is set to 0 for success and 255 for errors. The exact results presented on the client side depends on the
client and the client's operating system.
</p>
<p>In case of the <c>{direct, exec_fun()}</c> variant or no exec-option at all,