summaryrefslogtreecommitdiffstats
path: root/login-utils/su.c
diff options
context:
space:
mode:
authorJim Meyering2001-08-14 09:18:34 +0200
committerJim Meyering2001-08-14 09:18:34 +0200
commit7eaedbe05fb7e13d7de77cff6325a6e07a8b941f (patch)
treed5e2835075eae97ff2e40a10e2ccd05d53088bc2 /login-utils/su.c
parentInclude "dirname.h". (diff)
downloadkernel-qcow2-util-linux-7eaedbe05fb7e13d7de77cff6325a6e07a8b941f.tar.gz
kernel-qcow2-util-linux-7eaedbe05fb7e13d7de77cff6325a6e07a8b941f.tar.xz
kernel-qcow2-util-linux-7eaedbe05fb7e13d7de77cff6325a6e07a8b941f.zip
(xputenv): Remove parameter's const qualifier.
Diffstat (limited to 'login-utils/su.c')
-rw-r--r--login-utils/su.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/login-utils/su.c b/login-utils/su.c
index 27a56d505..d7460859f 100644
--- a/login-utils/su.c
+++ b/login-utils/su.c
@@ -180,7 +180,7 @@ static struct option const longopts[] =
/* Add VAL to the environment, checking for out of memory errors. */
static void
-xputenv (const char *val)
+xputenv (char *val)
{
if (putenv (val))
xalloc_die ();