1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-29 01:03:57 +03:00

sftp: Fix more typos

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
This commit is contained in:
Jakub Jelen
2020-08-12 13:08:48 +02:00
parent c0b65ccc5a
commit 88d4fa5352
2 changed files with 2 additions and 2 deletions

View File

@@ -806,7 +806,7 @@ LIBSSH_API void sftp_statvfs_free(sftp_statvfs_t statvfs_o);
/**
* @brief Synchronize a file's in-core state with storage device
*
* This calls the "fsync@openssh.com" extention. You should check if the
* This calls the "fsync@openssh.com" extension. You should check if the
* extensions is supported using:
*
* @code

View File

@@ -1269,7 +1269,7 @@ static char *sftp_parse_longname(const char *longname,
size_t len, field = 0;
p = longname;
/* Find the beginning of the field which is specified by sftp_longanme_field_e. */
/* Find the beginning of the field which is specified by sftp_longname_field_e. */
while(field != longname_field) {
if(isspace(*p)) {
field++;