diff options
author | 2010-08-31 20:42:45 +0000 | |
---|---|---|
committer | 2010-08-31 20:42:45 +0000 | |
commit | 4291b229204af75e4666c68eb1893076ccbb8ffe (patch) | |
tree | 90fc5c34937bf79395a213aeccda7b6a6f433506 | |
parent | remove argnames from prototype. (diff) | |
download | wireguard-openbsd-4291b229204af75e4666c68eb1893076ccbb8ffe.tar.xz wireguard-openbsd-4291b229204af75e4666c68eb1893076ccbb8ffe.zip |
Removed ra_uid, which was supposed to save the uid of a delta's author.
Is not used and not useful.
ok xsa, zinovik
-rw-r--r-- | usr.bin/cvs/rcs.h | 3 | ||||
-rw-r--r-- | usr.bin/rcs/rcs.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/cvs/rcs.h b/usr.bin/cvs/rcs.h index a5a736d2b06..bebb520fbde 100644 --- a/usr.bin/cvs/rcs.h +++ b/usr.bin/cvs/rcs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.h,v 1.94 2010/07/23 21:46:05 ray Exp $ */ +/* $OpenBSD: rcs.h,v 1.95 2010/08/31 20:42:45 tobias Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -128,7 +128,6 @@ typedef struct rcs_num { struct rcs_access { char *ra_name; - uid_t ra_uid; TAILQ_ENTRY(rcs_access) ra_list; }; diff --git a/usr.bin/rcs/rcs.h b/usr.bin/rcs/rcs.h index 2401f5fb004..4bd1ffa3302 100644 --- a/usr.bin/rcs/rcs.h +++ b/usr.bin/rcs/rcs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.h,v 1.9 2010/07/23 21:46:05 ray Exp $ */ +/* $OpenBSD: rcs.h,v 1.10 2010/08/31 20:42:45 tobias Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -145,7 +145,6 @@ typedef struct rcs_num { struct rcs_access { char *ra_name; - uid_t ra_uid; TAILQ_ENTRY(rcs_access) ra_list; }; |