From: Jim Meyering Date: Sat, 15 Sep 2001 11:20:47 +0000 (+0000) Subject: (enum Interactive): Remove members, I_OFF and I_ON. X-Git-Tag: TEXTUTILS-2_0_15~106 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d929a883fc58b63cadfcca1864c6aacff7af8388;p=thirdparty%2Fcoreutils.git (enum Interactive): Remove members, I_OFF and I_ON. Instead, add I_ALWAYS_YES, I_ALWAYS_NO, and I_ASK_USER. --- diff --git a/src/copy.h b/src/copy.h index ad82f372e6..953bd92fe5 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 };