diff options
| author | Michael Biebl <biebl@debian.org> | 2017-05-11 14:55:55 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2017-05-11 14:55:55 +0200 |
| commit | c333f062ddcba9b35330647bf6cbd0a07f2d786e (patch) | |
| tree | 257c3a0c74c09f4ad2328eab5b932806405f0c1c /libnm-util/crypto_nss.c | |
| parent | a222e56e103f949b148a6942e385ccca2c26d9f3 (diff) | |
New upstream version 1.8.0 upstream/1.8.0
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)) { |