summaryrefslogtreecommitdiffstats
path: root/include/bsd_auth.h
diff options
context:
space:
mode:
authorfcambus <fcambus@openbsd.org>2017-03-09 10:13:03 +0000
committerfcambus <fcambus@openbsd.org>2017-03-09 10:13:03 +0000
commit15afe4d60044a7a19461207eb4195d4d239aeab1 (patch)
treeb3d5b1e5af1ffc37d7afc087b04f1d20f6e4b9b9 /include/bsd_auth.h
parentremove bogus variable expansion (diff)
downloadwireguard-openbsd-15afe4d60044a7a19461207eb4195d4d239aeab1.tar.xz
wireguard-openbsd-15afe4d60044a7a19461207eb4195d4d239aeab1.zip
As per style.9, prototypes should not have variable names associated
with the types. OK jca@
Diffstat (limited to 'include/bsd_auth.h')
-rw-r--r--include/bsd_auth.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bsd_auth.h b/include/bsd_auth.h
index 0caf6dc6167..19c5fbc9cc8 100644
--- a/include/bsd_auth.h
+++ b/include/bsd_auth.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bsd_auth.h,v 1.10 2014/04/21 11:27:34 guenther Exp $ */
+/* $OpenBSD: bsd_auth.h,v 1.11 2017/03/09 10:13:03 fcambus Exp $ */
/*-
* Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved.
@@ -85,7 +85,7 @@ int auth_call(auth_session_t *, char *, ...)
int auth_setdata(auth_session_t *, void *, size_t);
int auth_setoption(auth_session_t *, char *, char *);
-int auth_setpwd(auth_session_t *, struct passwd *pwd);
+int auth_setpwd(auth_session_t *, struct passwd *);
void auth_set_va_list(auth_session_t *, __va_list);
struct passwd *auth_getpwd(auth_session_t *);