diff options
| author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-11-03 21:04:07 +0100 |
|---|---|---|
| committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-11-03 21:04:07 +0100 |
| commit | e71c28f6a0049617b1bae700524c69c2c8215e09 (patch) | |
| tree | 44b2fa6c5183744779b173e7ed684eefd05e0275 /include/libssh/sftp.h | |
| parent | c0e091a52f8521d0cdcb9c22b4caa88bbe40e604 (diff) | |
| download | libssh-e71c28f6a0049617b1bae700524c69c2c8215e09.tar.gz libssh-e71c28f6a0049617b1bae700524c69c2c8215e09.tar.xz libssh-e71c28f6a0049617b1bae700524c69c2c8215e09.zip | |
Fix warnings on old gcc's
they don't like variable names having type names
Diffstat (limited to 'include/libssh/sftp.h')
| -rw-r--r-- | include/libssh/sftp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/libssh/sftp.h b/include/libssh/sftp.h index 0293f29b..403d0c57 100644 --- a/include/libssh/sftp.h +++ b/include/libssh/sftp.h @@ -243,11 +243,11 @@ LIBSSH_API unsigned int sftp_extensions_get_count(sftp_session sftp); * * @param sftp The sftp session to use. * - * @param index The index number of the extension name you want. + * @param indexn The index number of the extension name you want. * * @return The name of the extension. */ -LIBSSH_API const char *sftp_extensions_get_name(sftp_session sftp, unsigned int index); +LIBSSH_API const char *sftp_extensions_get_name(sftp_session sftp, unsigned int indexn); /** * @brief Get the data of the extension provided by the server. @@ -256,11 +256,11 @@ LIBSSH_API const char *sftp_extensions_get_name(sftp_session sftp, unsigned int * * @param sftp The sftp session to use. * - * @param index The index number of the extension data you want. + * @param indexn The index number of the extension data you want. * * @return The data of the extension. */ -LIBSSH_API const char *sftp_extensions_get_data(sftp_session sftp, unsigned int index); +LIBSSH_API const char *sftp_extensions_get_data(sftp_session sftp, unsigned int indexn); /** * @brief Check if the given extension is supported. @@ -284,7 +284,7 @@ LIBSSH_API int sftp_extension_supported(sftp_session sftp, const char *name, /** * @brief Open a directory used to obtain directory entries. - * + * @param session The sftp session handle to open the directory. * @param path The path of the directory to open. * |
