Fix compile warning.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@391 7dcaeef0-15fb-0310-b436-a5af3365683c
Этот коммит содержится в:
родитель
f286e8c9b0
Коммит
b239fda60c
@ -510,7 +510,7 @@ int ssh_send_banner(SSH_SESSION *session, int is_server);
|
|||||||
char *ssh_get_banner(SSH_SESSION *session);
|
char *ssh_get_banner(SSH_SESSION *session);
|
||||||
|
|
||||||
/* errors.c */
|
/* errors.c */
|
||||||
void ssh_set_error(void *error,int code,char *descr,...);
|
void ssh_set_error(void *error, int code, const char *descr, ...);
|
||||||
|
|
||||||
/* in dh.c */
|
/* in dh.c */
|
||||||
/* DH key generation */
|
/* DH key generation */
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/* ssh_set_error registers an error with a description. the error code is the class of error, and description is obvious.*/
|
/* ssh_set_error registers an error with a description. the error code is the class of error, and description is obvious.*/
|
||||||
void ssh_set_error(void *error,int code,char *descr,...){
|
void ssh_set_error(void *error, int code, const char *descr, ...) {
|
||||||
struct error_struct *err= error;
|
struct error_struct *err= error;
|
||||||
va_list va;
|
va_list va;
|
||||||
va_start(va,descr);
|
va_start(va,descr);
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user