summaryrefslogtreecommitdiff
path: root/libcli/auth/smbdes.c
diff options
context:
space:
mode:
authorMatt Kraai <mkraai@beckman.com>2010-01-05 09:41:24 -0800
committerStefan Metzmacher <metze@samba.org>2010-02-02 07:18:17 +0100
commitaa6a507e76685f2a8d1f3bd33cbf0fbdeb0d69ce (patch)
tree11684012b24917253f89856169995c593d958485 /libcli/auth/smbdes.c
parenta7250eb14270101d4ca580acd8fdcaf7e308e515 (diff)
downloadsamba-aa6a507e76685f2a8d1f3bd33cbf0fbdeb0d69ce.tar.gz
samba-aa6a507e76685f2a8d1f3bd33cbf0fbdeb0d69ce.tar.bz2
samba-aa6a507e76685f2a8d1f3bd33cbf0fbdeb0d69ce.zip
Change uint_t to unsigned int in libcli
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'libcli/auth/smbdes.c')
-rw-r--r--libcli/auth/smbdes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcli/auth/smbdes.c b/libcli/auth/smbdes.c
index 32e65e779d..f052b27de9 100644
--- a/libcli/auth/smbdes.c
+++ b/libcli/auth/smbdes.c
@@ -367,7 +367,7 @@ void des_crypt112_16(uint8_t out[16], uint8_t in[16], const uint8_t key[14], int
/* Decode a sam password hash into a password. The password hash is the
same method used to store passwords in the NT registry. The DES key
used is based on the RID of the user. */
-void sam_rid_crypt(uint_t rid, const uint8_t *in, uint8_t *out, int forw)
+void sam_rid_crypt(unsigned int rid, const uint8_t *in, uint8_t *out, int forw)
{
uint8_t s[14];