diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-05-07 12:17:21 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-05-07 12:17:21 +0000 |
commit | 703f978c7d0b7abfa2a597fa0aa135dae74f1b7a (patch) | |
tree | 553b367601ce09431d557dc9fc4964b5cbf0e456 /libexec/login_token | |
parent | 56aa0c8edf70d30d0d48809f32c26d7b10615e68 (diff) |
fixed size types should be fixed size. long -> uint32_t.
from Matthias Pitzl pitzl at genua de
Diffstat (limited to 'libexec/login_token')
-rw-r--r-- | libexec/login_token/token.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/login_token/token.c b/libexec/login_token/token.c index 0e367bd4ef0..3993dce840c 100644 --- a/libexec/login_token/token.c +++ b/libexec/login_token/token.c @@ -1,4 +1,4 @@ -/* $OpenBSD: token.c,v 1.14 2013/01/13 21:21:17 fgsch Exp $ */ +/* $OpenBSD: token.c,v 1.15 2013/05/07 12:17:20 tedu Exp $ */ /*- * Copyright (c) 1995 Migration Associates Corp. All Rights Reserved @@ -63,7 +63,7 @@ typedef union { DES_cblock cb; char ct[9]; - unsigned long ul[2]; + uint32_t ul[2]; } TOKEN_CBlock; /* |