diff options
author | 2015-01-15 17:32:43 +0000 | |
---|---|---|
committer | 2015-01-15 17:32:43 +0000 | |
commit | bf7196e8144fb3bf388a5b1e66a57d0d941c5b9a (patch) | |
tree | 23cb926333b7dbf96146df0405ea41680553f0cd /lib/libc/crypt/cryptutil.c | |
parent | all modern systems can do this SUSPEND thing (diff) | |
download | wireguard-openbsd-bf7196e8144fb3bf388a5b1e66a57d0d941c5b9a.tar.xz wireguard-openbsd-bf7196e8144fb3bf388a5b1e66a57d0d941c5b9a.zip |
remove unused variable
ok tedu@
Diffstat (limited to 'lib/libc/crypt/cryptutil.c')
-rw-r--r-- | lib/libc/crypt/cryptutil.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/crypt/cryptutil.c b/lib/libc/crypt/cryptutil.c index 7e93dad3c80..c3ba08f9963 100644 --- a/lib/libc/crypt/cryptutil.c +++ b/lib/libc/crypt/cryptutil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptutil.c,v 1.7 2014/12/30 10:27:24 tedu Exp $ */ +/* $OpenBSD: cryptutil.c,v 1.8 2015/01/15 17:32:43 chl Exp $ */ /* * Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> * @@ -27,7 +27,6 @@ int crypt_checkpass(const char *pass, const char *goodhash) { char dummy[_PASSWORD_LEN]; - char *res; if (goodhash == NULL) { /* fake it */ |