Mercurial > dropbear
diff keyimport.h @ 1461:fb90a5ba84e0
Merge pull request #49 from fperrad/20170812_lint
Some linting, const parameters
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 25 Jan 2018 21:55:25 +0800 |
parents | 06d52bcb8094 |
children |
line wrap: on
line diff
--- a/keyimport.h Tue Jan 23 22:44:18 2018 +0800 +++ b/keyimport.h Thu Jan 25 21:55:25 2018 +0800 @@ -34,9 +34,9 @@ KEYFILE_SSHCOM }; -int import_write(const char *filename, sign_key *key, char *passphrase, +int import_write(const char *filename, sign_key *key, const char *passphrase, int filetype); -sign_key *import_read(const char *filename, char *passphrase, int filetype); +sign_key *import_read(const char *filename, const char *passphrase, int filetype); int import_encrypted(const char* filename, int filetype); #endif /* DROPBEAR_KEYIMPORT_H_ */