From 694c6b3a86148ee5e50b3fac9e80540fb1325b2a Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 15 Dec 2000 13:27:03 +0000 Subject: [PATCH] (enum Dereference_symlink): rename member: s/change_symlinks/dereference/ --- src/chown-core.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/chown-core.h b/src/chown-core.h index 9b60710..40f96ac 100644 --- a/src/chown-core.h +++ b/src/chown-core.h @@ -38,6 +38,14 @@ enum Verbosity V_off }; +enum Dereference_symlink +{ + DEREF_UNDEFINED = 1, + DEREF_NEVER, /* -P */ + DEREF_COMMAND_LINE_ARGUMENTS, /* -H */ + DEREF_ALWAYS /* -L */ +}; + struct Chown_option { /* Level of verbosity. */ @@ -46,9 +54,9 @@ struct Chown_option /* If nonzero, change the ownership of directories recursively. */ int recurse; - /* If nonzero, and the systems has support for it, change the ownership - of symbolic links rather than any files they point to. */ - int change_symlinks; + /* This is useful only on systems with support for changing the + ownership of symbolic links. */ + enum Dereference_symlink dereference; /* If nonzero, force silence (no error messages). */ int force_silent; -- 2.7.4