diff options
author | 2016-08-01 17:04:18 +0000 | |
---|---|---|
committer | 2016-08-01 17:04:18 +0000 | |
commit | 486beda28b4abc44723e374c78cca7379088e502 (patch) | |
tree | 030a8cf65956f7d46d3e8b3fd0974e1353f7e891 | |
parent | Make sure variables are initialized before using them (diff) | |
download | wireguard-openbsd-486beda28b4abc44723e374c78cca7379088e502.tar.xz wireguard-openbsd-486beda28b4abc44723e374c78cca7379088e502.zip |
zap unused var
-rw-r--r-- | libexec/login_lchpass/login_lchpass.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libexec/login_lchpass/login_lchpass.c b/libexec/login_lchpass/login_lchpass.c index 802955ac38d..b799d9e5237 100644 --- a/libexec/login_lchpass/login_lchpass.c +++ b/libexec/login_lchpass/login_lchpass.c @@ -1,4 +1,4 @@ -/* $OpenBSD: login_lchpass.c,v 1.18 2015/11/18 19:27:46 tedu Exp $ */ +/* $OpenBSD: login_lchpass.c,v 1.19 2016/08/01 17:04:18 jca Exp $ */ /*- * Copyright (c) 1995,1996 Berkeley Software Design, Inc. All rights reserved. @@ -59,7 +59,6 @@ int local_passwd(char *, int); int main(int argc, char *argv[]) { - login_cap_t *lc; struct iovec iov[2]; struct passwd *pwd; char *username = NULL, *hash = NULL, *p; |