diff options
| author | Roy Marples <roy@marples.name> | 2007-09-26 07:05:33 +0000 | 
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2007-09-26 07:05:33 +0000 | 
| commit | 8a7b58a73d0ef5a9a7f583bf73b1dc917f2a29de (patch) | |
| tree | e8c0ac11ec2cf07ac9521dd987bb11fb351af10d /src/mountinfo.c | |
| parent | ab0edd43b9c6df2946e8a514b12e04db23f13c65 (diff) | |
| download | openrc-8a7b58a73d0ef5a9a7f583bf73b1dc917f2a29de.tar.xz | |
rc_is_env is now rc_env_bool and just works with boolean values.
Diffstat (limited to 'src/mountinfo.c')
| -rw-r--r-- | src/mountinfo.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/mountinfo.c b/src/mountinfo.c index b57e7d55..92f2275e 100644 --- a/src/mountinfo.c +++ b/src/mountinfo.c @@ -364,7 +364,7 @@ int mountinfo (int argc, char **argv)  			continue;  		if (skip_point_regex && regexec (skip_point_regex, n, 0, NULL, 0) == 0)  			continue; -		if (! rc_is_env ("RC_QUIET", "yes")) +		if (rc_env_bool ("RC_QUIET"))  			printf ("%s\n", n);  		result = EXIT_SUCCESS;  	} | 
