projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ddf9aa
)
(enum Interactive): Remove members, I_OFF and I_ON.
author
Jim Meyering
<jim@meyering.net>
Sat, 15 Sep 2001 11:20:47 +0000
(11:20 +0000)
committer
Jim 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
patch
|
blob
|
history
diff --git
a/src/copy.h
b/src/copy.h
index ad82f372e6c7a4bba79abdc1962959632b0e9ce6..953bd92fe5c42670c61992d5340d54261ff42d81 100644
(file)
--- 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
};