diff options
-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 }; |