(enum Interactive): Remove members, I_OFF and I_ON.
authorJim Meyering <jim@meyering.net>
Sat, 15 Sep 2001 11:20:47 +0000 (11:20 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 15 Sep 2001 11:20:47 +0000 (11:20 +0000)
Instead, add I_ALWAYS_YES, I_ALWAYS_NO, and I_ASK_USER.

src/copy.h

index ad82f372e6c7a4bba79abdc1962959632b0e9ce6..953bd92fe5c42670c61992d5340d54261ff42d81 100644 (file)
@@ -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
 };