diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-08 09:21:12 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-08 09:21:12 +0000 |
commit | f68623e0f37deb741f9e8c331d898de7a28dd22b (patch) | |
tree | 79d14bc8ec725e9807c1d23d37746267b4ac04c2 | |
parent | a1ea6dc8fffc0874e86e976f2709cbadecb1a023 (diff) |
2002-05-07 Roland McGrath <roland@frob.com>
* iouser-reauth.c (iohelp_reauth): u_int -> size_t
-rw-r--r-- | libiohelp/iouser-reauth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libiohelp/iouser-reauth.c b/libiohelp/iouser-reauth.c index 2139bcc6..4125cfb8 100644 --- a/libiohelp/iouser-reauth.c +++ b/libiohelp/iouser-reauth.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1996,99,2001 Free Software Foundation + Copyright (C) 1996,99,2001,02 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -32,7 +32,7 @@ error_t iohelp_reauth (struct iouser **user, { uid_t gubuf[20], ggbuf[20], aubuf[20], agbuf[20]; uid_t *gen_uids, *gen_gids, *aux_uids, *aux_gids; - u_int genuidlen, gengidlen, auxuidlen, auxgidlen; + size_t genuidlen, gengidlen, auxuidlen, auxgidlen; error_t err; struct iouser *new; |