diff options
| author | Paul Eggert <eggert@cs.ucla.edu> | 2025-09-17 09:12:23 -0700 |
|---|---|---|
| committer | Paul Eggert <eggert@cs.ucla.edu> | 2025-09-17 12:20:24 -0700 |
| commit | ee367bd38daca8e36e4088d11301e52b782597ad (patch) | |
| tree | a88cd197df4f38f99340915abd542fe1256c6b9f /src/pr.c | |
| parent | build: update gnulib submodule to latest (diff) | |
| download | coreutils-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/pr.c')
| -rw-r--r-- | src/pr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1483,7 +1483,7 @@ init_funcs (void) static bool open_file (char *name, COLUMN *p) { - if (STREQ (name, "-")) + if (streq (name, "-")) { p->name = _("standard input"); p->fp = stdin; @@ -1654,7 +1654,7 @@ init_header (char const *filename, int desc) struct tm tm; /* If parallel files or standard input, use current date. */ - if (STREQ (filename, "-")) + if (streq (filename, "-")) desc = -1; if (0 <= desc && fstat (desc, &st) == 0) t = get_stat_mtime (&st); |
