summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade/variable.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>2000-02-26 11:57:22 +0000
committerjkh <jkh@FreeBSD.org>2000-02-26 11:57:22 +0000
commitef07546591c6911c436e0c4cc059bb829a5e8e35 (patch)
tree4780bc1412e102fcfcbaf7990844ca3efa7ec3f0 /usr.sbin/sade/variable.c
parentdfef412c92bf74fc9e46725c1e67efb6d3f0b33d (diff)
downloadFreeBSD-src-ef07546591c6911c436e0c4cc059bb829a5e8e35.zip
FreeBSD-src-ef07546591c6911c436e0c4cc059bb829a5e8e35.tar.gz
Clean up some of the abstraction in this code.
Diffstat (limited to 'usr.sbin/sade/variable.c')
-rw-r--r--usr.sbin/sade/variable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sade/variable.c b/usr.sbin/sade/variable.c
index 1e2bf9a..bae7bc2 100644
--- a/usr.sbin/sade/variable.c
+++ b/usr.sbin/sade/variable.c
@@ -188,7 +188,7 @@ variable_check(char *data)
}
else if ((cp3 = index(cp, ',')) != NULL)
*cp3 = '\0';
- cp2 = getenv(tmp);
+ cp2 = variable_get(tmp);
if (cp2) {
if (!*cp)
return TRUE;
@@ -199,7 +199,7 @@ variable_check(char *data)
return FALSE;
}
else
- return getenv(tmp) ? TRUE : FALSE;
+ return variable_get(tmp) ? TRUE : FALSE;
}
int
OpenPOWER on IntegriCloud