summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-09-15 11:20:47 +0000
committerJim Meyering <jim@meyering.net>2001-09-15 11:20:47 +0000
commitd929a883fc58b63cadfcca1864c6aacff7af8388 (patch)
treeaf3ba9b62f0466dcdf1a89461a735d25f45d094e /src
parent8ddf9aa30cc82a9c5c6f50d02bde1062ade05f6d (diff)
downloadcoreutils-d929a883fc58b63cadfcca1864c6aacff7af8388.tar.xz
(enum Interactive): Remove members, I_OFF and I_ON.
Instead, add I_ALWAYS_YES, I_ALWAYS_NO, and I_ASK_USER.
Diffstat (limited to 'src')
-rw-r--r--src/copy.h5
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
};