diff --git a/README b/README index dabbfe48..27918bc1 100644 --- a/README +++ b/README @@ -12,13 +12,13 @@ options deserve additional comments: The SSH2 Transport allows for unencrypted data transmission using the "none" cipher. Because this is such a huge security hole, it is typically disabled on - SSH2 implementations and is diabled in libssh2 by + SSH2 implementations and is disabled in libssh2 by default as well. Enabling this option will allow for "none" as a negotiable method, however it still requires that the method be advertized by the remote end and that no - more-prefferable methods are available. + more-preferable methods are available. * --enable-mac-none @@ -31,7 +31,7 @@ options deserve additional comments: Enabling this option will allow for "none" as a negotiable method, however it still requires that the method be advertized by the remote end and that no - more-prefferable methods are available. + more-preferable methods are available. * --disable-gex-new @@ -55,7 +55,7 @@ options deserve additional comments: Configure will attempt to locate Libgcrypt in the default location, but if you have installed it - somewhere else, use the --with-libgrypt-prefic=DIR + somewhere else, use the --with-libgrypt-prefix=DIR parameter. * --with-openssl=[DIR] diff --git a/docs/libssh2_channel_forward_listen_ex.3 b/docs/libssh2_channel_forward_listen_ex.3 index 99bd3718..a80a1fba 100644 --- a/docs/libssh2_channel_forward_listen_ex.3 +++ b/docs/libssh2_channel_forward_listen_ex.3 @@ -1,4 +1,4 @@ -.\" $Id: libssh2_channel_forward_listen_ex.3,v 1.1 2006/12/21 14:09:13 bagder Exp $ +.\" $Id: libssh2_channel_forward_listen_ex.3,v 1.2 2007/04/12 21:30:03 dfandrich Exp $ .\" .TH libssh2_channel_forward_listen_ex 3 "14 Dec 2006" "libssh2 0.15" "libssh2 manual" .SH NAME @@ -30,7 +30,7 @@ host will select the first available dynamic port. \fIbound_port\fP - Populated with the actual port bound on the remote host. Useful when requesting dynamic port numbers. -\fIqueue_maxsize\fP - Maximum nuber of pending connections to queue before +\fIqueue_maxsize\fP - Maximum number of pending connections to queue before rejecting further attempts. \fIlibssh2_channel_forward_listen(3)\fP is a macro. diff --git a/docs/libssh2_poll.3 b/docs/libssh2_poll.3 index 3f6e3de8..5a2cc91b 100644 --- a/docs/libssh2_poll.3 +++ b/docs/libssh2_poll.3 @@ -1,4 +1,4 @@ -.\" $Id: libssh2_poll.3,v 1.1 2007/02/23 10:20:56 bagder Exp $ +.\" $Id: libssh2_poll.3,v 1.2 2007/04/12 21:30:03 dfandrich Exp $ .\" .TH libssh2_poll 3 "14 Dec 2006" "libssh2 0.15" "libssh2 manual" .SH NAME @@ -11,9 +11,9 @@ int libssh2_poll(LIBSSH2_POLLFD *fds, unsigned int nfds, long timeout); Poll for activity on a socket, channel, listener, or any combination of these three types. The calling semantics for this function generally match \fIpoll(2)\fP however the structure of fds is somewhat more complex in order -to accomodate the disparate datatypes, POLLFD constants have been namespaced -to avoid platform discrepencies, and revents has additional values defined. +to accommodate the disparate datatypes, POLLFD constants have been namespaced +to avoid platform discrepancies, and revents has additional values defined. .SH "RETURN VALUE" -Number of fds with interresting events. +Number of fds with interesting events. .SH "SEE ALSO" .BR libssh2_poll_channel_read(3) diff --git a/docs/libssh2_session_init.3 b/docs/libssh2_session_init.3 index 233077a0..6d51d129 100644 --- a/docs/libssh2_session_init.3 +++ b/docs/libssh2_session_init.3 @@ -1,4 +1,4 @@ -.\" $Id: libssh2_session_init.3,v 1.1 2006/12/21 14:09:13 bagder Exp $ +.\" $Id: libssh2_session_init.3,v 1.2 2007/04/12 21:30:03 dfandrich Exp $ .\" .TH libssh2_session_init 3 "14 Dec 2006" "libssh2 0.15" "libssh2 manual" .SH NAME @@ -15,7 +15,7 @@ LIBSSH2_SESSION *libssh2_session_init_ex( LIBSSH2_SESSION *libssh2_session_init(void); .SH DESCRIPTION Initializes an SSH session object. By default system memory allocators -(malloc(), free(), realloc()) will be used for any dynamicly allocated memory +(malloc(), free(), realloc()) will be used for any dynamically allocated memory blocks. Alternate memory allocation functions may be specified using the extended version of this API call, and/or optional application specific data may be attached to the session object. diff --git a/docs/libssh2_sftp_read.3 b/docs/libssh2_sftp_read.3 index 782c14a9..4070859d 100644 --- a/docs/libssh2_sftp_read.3 +++ b/docs/libssh2_sftp_read.3 @@ -1,4 +1,4 @@ -.\" $Id: libssh2_sftp_read.3,v 1.1 2007/02/23 10:20:56 bagder Exp $ +.\" $Id: libssh2_sftp_read.3,v 1.2 2007/04/12 21:30:03 dfandrich Exp $ .\" .TH libssh2_sftp_read 3 "6 Feb 2007" "libssh2 0.15" "libssh2 manual" .SH NAME @@ -9,7 +9,7 @@ libssh2_sftp_read - read data from an SFTP handle ssize_t libssh2_sftp_read(LIBSSH2_SFTP_HANDLE *handle, char *buffer, size_t buffer_maxlen); .SH DESCRIPTION -Reads a block of data from an LIBSSH2_SFTP_HANDLE. This method is modeled +Reads a block of data from an LIBSSH2_SFTP_HANDLE. This method is modelled after the POSIX \Iread(3)\fP function and uses the same calling semantics. \fIlibssh2_sftp_read(3)\fP will attempt to read as much as possible however it may not fill all of buffer if the file pointer reaches the end or diff --git a/docs/libssh2_sftp_readnb.3 b/docs/libssh2_sftp_readnb.3 index 1b475959..8285d4ae 100644 --- a/docs/libssh2_sftp_readnb.3 +++ b/docs/libssh2_sftp_readnb.3 @@ -1,4 +1,4 @@ -.\" $Id: libssh2_sftp_readnb.3,v 1.1 2007/02/23 10:20:56 bagder Exp $ +.\" $Id: libssh2_sftp_readnb.3,v 1.2 2007/04/12 21:30:03 dfandrich Exp $ .\" .TH libssh2_sftp_read 3 "6 Feb 2007" "libssh2 0.15" "libssh2 manual" .SH NAME @@ -10,7 +10,7 @@ ssize_t libssh2_sftp_readnb(LIBSSH2_SFTP_HANDLE *handle, char *buffer, size_t buffer_maxlen); .SH DESCRIPTION Reads a block of data from an LIBSSH2_SFTP_HANDLE non-blocking. This method is -modeled after the POSIX \Iread(3)\fP function and uses the same calling +modelled after the POSIX \Iread(3)\fP function and uses the same calling semantics. \fIlibssh2_sftp_read(3)\fP will attempt to read as much as possible however it may not fill all of buffer if the file pointer reaches the end or if further reads would cause the socket to block. diff --git a/docs/template.3 b/docs/template.3 index 812460c6..d5e111ab 100644 --- a/docs/template.3 +++ b/docs/template.3 @@ -1,4 +1,4 @@ -.\" $Id: template.3,v 1.1 2007/02/02 16:09:12 bagder Exp $ +.\" $Id: template.3,v 1.2 2007/04/12 21:30:03 dfandrich Exp $ .\" .TH libssh2_template 3 "14 Dec 2006" "libssh2 0.15" "libssh2 manual" .SH NAME @@ -10,6 +10,6 @@ void libssh2_template(void); .SH DESCRIPTION Long text describing the function and its input arguments. .SH RETURN VALUE -Describe what the funtion returns. +Describe what the function returns. .SH "SEE ALSO" Add related functions