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/fstabinfo.c | |
parent | ab0edd43b9c6df2946e8a514b12e04db23f13c65 (diff) |
rc_is_env is now rc_env_bool and just works with boolean values.
Diffstat (limited to 'src/fstabinfo.c')
-rw-r--r-- | src/fstabinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fstabinfo.c b/src/fstabinfo.c index ab00cd19..85640ccf 100644 --- a/src/fstabinfo.c +++ b/src/fstabinfo.c @@ -181,7 +181,7 @@ int fstabinfo (int argc, char **argv) } /* No point in outputting if quiet */ - if (rc_is_env ("RC_QUIET", "yes")) + if (rc_env_bool ("RC_QUIET")) continue; switch (output) { |