]> arthur.barton.de Git - netatalk.git/blobdiff - bin/afppasswd/afppasswd.c
Convert all u_int to ISO uint
[netatalk.git] / bin / afppasswd / afppasswd.c
index 2d788baa7ee34a1dff54fe1091d244c0d5343d3a..c3e60fb5d8a5888c0a0a9c86d4d68cd78db88aff 100644 (file)
@@ -66,7 +66,7 @@ static char buf[MAXPATHLEN + 1];
 #define unhex(x)  (isdigit(x) ? (x) - '0' : toupper(x) + 10 - 'A')
 static void convert_passwd(char *buf, char *newpwd, const int keyfd)
 {
-  u_int8_t key[HEXPASSWDLEN];
+  uint8_t key[HEXPASSWDLEN];
   Key_schedule schedule;
   unsigned int i, j;