]> jfr.im git - solanum.git/blobdiff - librb/src/crypt.c
cleanup: u_long -> unsigned long
[solanum.git] / librb / src / crypt.c
index 4b807c7ef7839530a00c2b8b970c3262c24ca859..9344e988d557eb2a4225002fa5476529864d870a 100644 (file)
@@ -754,7 +754,7 @@ rb_des_crypt(const char *key, const char *setting)
 #define MD5_SIZE                       16
 
 static void
-_crypt_to64(char *s, u_long v, int n)
+_crypt_to64(char *s, unsigned long v, int n)
 {
        while (--n >= 0) {
                *s++ = ascii64[v&0x3f];