1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-08-07 08:02:56 +03:00

Normalize line endings in libssh2_sftp_get_channel.3.

Somehow it got Windows-style CRLF endings so convert to just LF,
for consistency as well as not to confuse tools that will regard
the \r as content (e.g. the OpenVMS help librarian).
This commit is contained in:
Craig A. Berry
2016-03-12 18:11:33 -06:00
committed by Alexander Lamaison
parent a8dff80726
commit 0268b974a7

View File

@@ -1,21 +1,21 @@
.TH libssh2_sftp_get_channel 3 "9 Sep 2011" "libssh2 1.4.0" "libssh2 manual" .TH libssh2_sftp_get_channel 3 "9 Sep 2011" "libssh2 1.4.0" "libssh2 manual"
.SH NAME .SH NAME
libssh2_sftp_get_channel - return the channel of sftp libssh2_sftp_get_channel - return the channel of sftp
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
#include <libssh2.h> #include <libssh2.h>
#include <libssh2_sftp.h> #include <libssh2_sftp.h>
.fi .fi
LIBSSH2_CHANNEL *libssh2_sftp_get_channel(LIBSSH2_SFTP *sftp); LIBSSH2_CHANNEL *libssh2_sftp_get_channel(LIBSSH2_SFTP *sftp);
.SH DESCRIPTION .SH DESCRIPTION
\fIsftp\fP - SFTP instance as returned by \fIsftp\fP - SFTP instance as returned by
.BR libssh2_sftp_init(3) .BR libssh2_sftp_init(3)
Return the channel of the given sftp handle. Return the channel of the given sftp handle.
.SH RETURN VALUE .SH RETURN VALUE
The channel of the SFTP instance or NULL if something was wrong. The channel of the SFTP instance or NULL if something was wrong.
.SH AVAILABILITY .SH AVAILABILITY
Added in 1.4.0 Added in 1.4.0
.SH SEE ALSO .SH SEE ALSO
.BR libssh2_sftp_init(3) .BR libssh2_sftp_init(3)