diff options
Diffstat (limited to 'libnm-util/crypto_nss.c')
| -rw-r--r-- | libnm-util/crypto_nss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libnm-util/crypto_nss.c b/libnm-util/crypto_nss.c index 4e60d2e9..b55af774 100644 --- a/libnm-util/crypto_nss.c +++ b/libnm-util/crypto_nss.c @@ -79,7 +79,7 @@ crypto_md5_hash (const char *salt, { PK11Context *ctx; int nkey = buflen; - unsigned int digest_len; + unsigned digest_len; int count = 0; char digest[MD5_HASH_LEN]; char *p = buffer; @@ -144,7 +144,7 @@ crypto_decrypt (const char *cipher, PK11Context *ctx = NULL; SECStatus s; gboolean success = FALSE; - unsigned int pad_len = 0, extra = 0; + unsigned pad_len = 0, extra = 0; guint32 i, real_iv_len = 0; if (!strcmp (cipher, CIPHER_DES_EDE3_CBC)) { |