diff options
author | Gaël PORTAY <gael.portay@gmail.com> | 2015-05-02 15:59:06 +0200 |
---|---|---|
committer | Gaël PORTAY <gael.portay@gmail.com> | 2015-05-05 20:39:13 +0200 |
commit | 224b16b2470ab764e854eb4a7cdd568353655afc (patch) | |
tree | eba9e3ed33fd1c66c6286abaf3f3e383f2eb8504 /auth.h | |
parent | ef0aac432c986f52a1b973bcd73ddf7324e0e70f (diff) | |
download | dropbear-224b16b2470ab764e854eb4a7cdd568353655afc.tar.gz |
Fix pointer differ in signess warnings [-Werror=pointer-sign]
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ struct PubKeyOptions { int no_x11_forwarding_flag; int no_pty_flag; /* "command=" option. */ - unsigned char * forced_command; + char * forced_command; }; #endif |