diff options
Diffstat (limited to 'sbin/mount_vnd')
-rw-r--r-- | sbin/mount_vnd/pkcs5_pbkdf2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount_vnd/pkcs5_pbkdf2.c b/sbin/mount_vnd/pkcs5_pbkdf2.c index a245b403a78..58792410aad 100644 --- a/sbin/mount_vnd/pkcs5_pbkdf2.c +++ b/sbin/mount_vnd/pkcs5_pbkdf2.c @@ -68,10 +68,10 @@ static void int_encode(u_int8_t *, int); static void prf_iterate(u_int8_t *, const u_int8_t *, int, const u_int8_t *, int, int, int); -void +static void memxor(void *res, const void *src, size_t len) { - int i; + size_t i; char *r; const char *s; |