From: Jim Meyering Date: Fri, 15 Dec 2000 13:27:03 +0000 (+0000) Subject: (enum Dereference_symlink): rename member: s/change_symlinks/dereference/ X-Git-Tag: FILEUTILS-4_0_34~64 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=694c6b3a86148ee5e50b3fac9e80540fb1325b2a;p=thirdparty%2Fcoreutils.git (enum Dereference_symlink): rename member: s/change_symlinks/dereference/ --- diff --git a/src/chown-core.h b/src/chown-core.h index 9b60710558..40f96ac8b5 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;