diff options
author | 2000-06-19 20:54:12 +0000 | |
---|---|---|
committer | 2000-06-19 20:54:12 +0000 | |
commit | 9a0ecea3a281f52d1eb74ca5392649875b897523 (patch) | |
tree | 68a0c264fbb932a6bbe7049a446b9e2196e9261c | |
parent | fix parms in tcfs_encrypt_key. I'm not sure if this is fine, tho. (diff) | |
download | wireguard-openbsd-9a0ecea3a281f52d1eb74ca5392649875b897523.tar.xz wireguard-openbsd-9a0ecea3a281f52d1eb74ca5392649875b897523.zip |
remove unused var
-rw-r--r-- | usr.bin/tcfs/tcfsrmgroup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tcfs/tcfsrmgroup.c b/usr.bin/tcfs/tcfsrmgroup.c index dbfe09a2270..39842ee83c3 100644 --- a/usr.bin/tcfs/tcfsrmgroup.c +++ b/usr.bin/tcfs/tcfsrmgroup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcfsrmgroup.c,v 1.4 2000/06/19 20:35:48 fgsch Exp $ */ +/* $OpenBSD: tcfsrmgroup.c,v 1.5 2000/06/19 20:54:12 fgsch Exp $ */ /* * Transparent Cryptographic File System (TCFS) for NetBSD @@ -30,7 +30,7 @@ Remove a TCFS group from the TCFS group database. int rmgroup_main (int argn, char *argv[]) { - int index, val; + int val; gid_t gid; int have_gid = FALSE, be_verbose = FALSE; |