summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2016-09-01 17:30:53 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2016-09-01 17:30:53 +0000
commit6808d0e4c3a1da8ea6d20877f799a4a58e4e2511 (patch)
tree3de6c020d5f60bbfd6f4508b1b16ae26be0ba909 /usr.bin
parent8b6a16dcc0f3bd858828ef8b682d6f07c86e6ddb (diff)
unconst these parameters; i won't be changing bsd auth today.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/doas/doas.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/doas/doas.c b/usr.bin/doas/doas.c
index fdd45ca29c0..dba81727543 100644
--- a/usr.bin/doas/doas.c
+++ b/usr.bin/doas/doas.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: doas.c,v 1.61 2016/09/01 13:16:38 tedu Exp $ */
+/* $OpenBSD: doas.c,v 1.62 2016/09/01 17:30:52 tedu Exp $ */
/*
* Copyright (c) 2015 Ted Unangst <tedu@openbsd.org>
*
@@ -204,7 +204,7 @@ checkconfig(const char *confpath, int argc, char **argv,
}
static void
-authuser(const char *myname, const char *login_style)
+authuser(char *myname, char *login_style)
{
char *challenge = NULL, *response, rbuf[1024], cbuf[128];
auth_session_t *as;