aboutsummaryrefslogtreecommitdiffstats
path: root/src/chcon.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2025-09-17 09:12:23 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2025-09-17 12:20:24 -0700
commitee367bd38daca8e36e4088d11301e52b782597ad (patch)
treea88cd197df4f38f99340915abd542fe1256c6b9f /src/chcon.c
parentbuild: update gnulib submodule to latest (diff)
downloadcoreutils-ee367bd38daca8e36e4088d11301e52b782597ad.tar.gz
coreutils-ee367bd38daca8e36e4088d11301e52b782597ad.zip
maint: STREQ → streq
Use new Gnulib streq function instead of rolling our own macro. * bootstrap.conf (gnulib_modules): Add stringeq. * src/rm.c (main): Don’t assume streq is a macro that expands to (...), as it is now a function. * src/system.h: * tests/df/no-mtab-status.sh, tests/df/skip-duplicates.sh: (STREQ): Remove. All uses replaced by streq.
Diffstat (limited to 'src/chcon.c')
-rw-r--r--src/chcon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chcon.c b/src/chcon.c
index 3c8edab31..a54133a5c 100644
--- a/src/chcon.c
+++ b/src/chcon.c
@@ -177,7 +177,7 @@ change_file_context (int fd, char const *file)
context_string = specified_context;
}
- if (file_context == nullptr || ! STREQ (context_string, file_context))
+ if (file_context == nullptr || ! streq (context_string, file_context))
{
int fail = (affect_symlink_referent
? setfileconat (fd, file, context_string)