From 37c8eaecbdaebc62aa4c2e8671fb366d20f9bbe8 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Sun, 15 Jan 2012 16:02:29 +0100 Subject: Fixed signed/unsigned warnings. Dropped opaque type (replaced with uint8_t) --- lib/auth/srp_passwd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/auth/srp_passwd.c') diff --git a/lib/auth/srp_passwd.c b/lib/auth/srp_passwd.c index 0038584ddb..78c9b0bb2c 100644 --- a/lib/auth/srp_passwd.c +++ b/lib/auth/srp_passwd.c @@ -49,7 +49,7 @@ pwd_put_values (SRP_PWD_ENTRY * entry, char *str) { char *p; int len, ret; - opaque *verifier; + uint8_t *verifier; size_t verifier_size; int indx; @@ -139,7 +139,7 @@ pwd_put_values2 (SRP_PWD_ENTRY * entry, char *str) { char *p; int len; - opaque *tmp; + uint8_t *tmp; int ret; p = strrchr (str, ':'); /* we have g */ -- cgit v1.2.1