From 38cb824673a53062ab0d2ee843cdf58affc17e04 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 5 Nov 2009 08:32:09 +0100 Subject: maint: factor out cycle warning, now that du will use it, too * src/system.h (emit_cycle_warning): Define. Factored out of... * src/remove.c (rm_fts): ...here. Use the new macro. --- src/remove.c | 7 +------ src/system.h | 12 ++++++++++++ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/remove.c b/src/remove.c index c4b93fe7e..584720079 100644 --- a/src/remove.c +++ b/src/remove.c @@ -564,12 +564,7 @@ rm_fts (FTS *fts, FTSENT *ent, struct rm_options const *x) } case FTS_DC: /* directory that causes cycles */ - error (0, 0, _("\ -WARNING: Circular directory structure.\n\ -This almost certainly means that you have a corrupted file system.\n\ -NOTIFY YOUR SYSTEM MANAGER.\n\ -The following directory is part of the cycle:\n %s\n"), - quote (ent->fts_path)); + emit_cycle_warning (ent->fts_path); fts_skip_tree (fts, ent); return RM_ERROR; diff --git a/src/system.h b/src/system.h index b4d5e774f..be7811b48 100644 --- a/src/system.h +++ b/src/system.h @@ -672,6 +672,18 @@ io_blksize (struct stat sb) void usage (int status) ATTRIBUTE_NORETURN; +#define emit_cycle_warning(file_name) \ + do \ + { \ + error (0, 0, _("\ +WARNING: Circular directory structure.\n\ +This almost certainly means that you have a corrupted file system.\n\ +NOTIFY YOUR SYSTEM MANAGER.\n\ +The following directory is part of the cycle:\n %s\n"), \ + quote (file_name)); \ + } \ + while (0) + #ifndef ARRAY_CARDINALITY # define ARRAY_CARDINALITY(Array) (sizeof (Array) / sizeof *(Array)) #endif -- cgit v1.2.3-54-g00ecf