diff options
author | Jim Meyering <jim@meyering.net> | 2001-09-15 11:20:47 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-09-15 11:20:47 +0000 |
commit | d929a883fc58b63cadfcca1864c6aacff7af8388 (patch) | |
tree | af3ba9b62f0466dcdf1a89461a735d25f45d094e | |
parent | 8ddf9aa30cc82a9c5c6f50d02bde1062ade05f6d (diff) | |
download | coreutils-d929a883fc58b63cadfcca1864c6aacff7af8388.tar.xz |
(enum Interactive): Remove members, I_OFF and I_ON.
Instead, add I_ALWAYS_YES, I_ALWAYS_NO, and I_ASK_USER.
-rw-r--r-- | src/copy.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/copy.h b/src/copy.h index ad82f372e..953bd92fe 100644 --- a/src/copy.h +++ b/src/copy.h @@ -25,8 +25,9 @@ enum Sparse_type /* This type is used to help mv (via copy.c) distinguish these cases. */ enum Interactive { - I_OFF = 1, - I_ON, + I_ALWAYS_YES = 1, + I_ALWAYS_NO, + I_ASK_USER, I_UNSPECIFIED }; |