tone down complaints in merge_ops()

speak more accurately of redundancy, not conflict. these are fatal
errors at all only because the user likely meant something else than
they typed, so we force them to think again.
This commit is contained in:
Oswald Buddenhagen 2021-12-28 12:55:19 +01:00
parent d7e3ae4b74
commit be6e07c5c9

View File

@ -312,7 +312,7 @@ merge_ops( int cops, int ops[], const char *chan_name )
if (aops & OP_MASK_TYPE) { // PullNew, etc. if (aops & OP_MASK_TYPE) { // PullNew, etc.
if (aops & cops & OP_MASK_TYPE) { // Overlapping New, etc. if (aops & cops & OP_MASK_TYPE) { // Overlapping New, etc.
cfl: cfl:
error( "Conflicting Sync args specified %s.\n", channel_str( chan_name ) ); error( "Redundant Sync options specified %s.\n", channel_str( chan_name ) );
return 1; return 1;
} }
// Mix in non-overlapping Push/Pull or New, etc. // Mix in non-overlapping Push/Pull or New, etc.
@ -344,7 +344,7 @@ merge_ops( int cops, int ops[], const char *chan_name )
op = boxOps[i].op; op = boxOps[i].op;
if (ops[F] & (op * (XOP_HAVE_EXPUNGE / OP_EXPUNGE))) { if (ops[F] & (op * (XOP_HAVE_EXPUNGE / OP_EXPUNGE))) {
if (aops & cops & op) { if (aops & cops & op) {
error( "Conflicting %s args specified %s.\n", boxOps[i].name, channel_str( chan_name ) ); error( "Redundant %s options specified %s.\n", boxOps[i].name, channel_str( chan_name ) );
return 1; return 1;
} }
ops[F] |= cops & op; ops[F] |= cops & op;