Use const char * and an unsigned int in ssh_crc32().

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@723 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
Andreas Schneider
2009-05-05 07:34:16 +00:00
parent 03c40ac79f
commit 33a640e348
2 changed files with 62 additions and 61 deletions

View File

@@ -660,7 +660,7 @@ CRYPTO *crypto_new(void);
void crypto_free(CRYPTO *crypto);
/* crc32.c */
u32 ssh_crc32(char *buffer, int len);
u32 ssh_crc32(const char *buf, u32 len);
/* auth1.c */
int ssh_userauth1_none(SSH_SESSION *session, const char *username);