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

Fix compiler warning in client.c.

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@208 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
Andreas Schneider
2009-02-02 15:19:44 +00:00
parent ddf4a8e9c9
commit 55c7cc6839
2 changed files with 2 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ void ssh_disconnect(SSH_SESSION *session);
int ssh_service_request(SSH_SESSION *session,char *service); int ssh_service_request(SSH_SESSION *session,char *service);
char *ssh_get_issue_banner(SSH_SESSION *session); char *ssh_get_issue_banner(SSH_SESSION *session);
/* get copyright informations */ /* get copyright informations */
const char *ssh_copyright(); const char *ssh_copyright(void);
/* string.h */ /* string.h */
/* You can use these functions, they won't change */ /* You can use these functions, they won't change */

View File

@@ -386,7 +386,7 @@ void ssh_disconnect(SSH_SESSION *session){
ssh_cleanup(session); ssh_cleanup(session);
} }
const char *ssh_copyright(){ const char *ssh_copyright(void) {
return LIBSSH_VERSION " (c) 2003-2008 Aris Adamantiadis (aris@0xbadc0de.be)" return LIBSSH_VERSION " (c) 2003-2008 Aris Adamantiadis (aris@0xbadc0de.be)"
" Distributed under the LGPL, please refer to COPYING file for informations" " Distributed under the LGPL, please refer to COPYING file for informations"
" about your rights" ; " about your rights" ;