diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2008-11-14 11:58:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2008-11-14 11:58:09 +0000 |
commit | 4dcc6f61d2ac432522cb0d8249ced4b2437da0a5 (patch) | |
tree | 7b176ffeeb7bda768ae52a14198616c2982e1231 /usr.bin/sudo/zero_bytes.c | |
parent | b947682bc3ae9dc4a24d5a2c48e88d01ecd53b63 (diff) |
Upgrade to sudo 1.7. See the WHATSNEW files for details.
Diffstat (limited to 'usr.bin/sudo/zero_bytes.c')
-rw-r--r-- | usr.bin/sudo/zero_bytes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/sudo/zero_bytes.c b/usr.bin/sudo/zero_bytes.c index f77c8cfb048..8ce2eb581bc 100644 --- a/usr.bin/sudo/zero_bytes.c +++ b/usr.bin/sudo/zero_bytes.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003-2005 Todd C. Miller <Todd.Miller@courtesan.com> + * Copyright (c) 2003-2005, 2007 Todd C. Miller <Todd.Miller@courtesan.com> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -20,7 +20,7 @@ #include <compat.h> #ifndef lint -__unused static const char rcsid[] = "$Sudo: zero_bytes.c,v 1.2.2.2 2007/06/12 01:28:42 millert Exp $"; +__unused static const char rcsid[] = "$Sudo: zero_bytes.c,v 1.7 2008/11/09 14:13:12 millert Exp $"; #endif /* lint */ /* @@ -29,7 +29,7 @@ __unused static const char rcsid[] = "$Sudo: zero_bytes.c,v 1.2.2.2 2007/06/12 0 */ void zero_bytes(v, n) - volatile VOID *v; + volatile void *v; size_t n; { volatile char *p, *ep; |