From: Jim Meyering Date: Sat, 20 Dec 2003 09:23:19 +0000 (+0000) Subject: (apply_translations): Don't prohibit conv=unblock,sync. X-Git-Tag: v5.1.0~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=adc5058db257a8d2268d12c92e58de7c8d1d9642;p=thirdparty%2Fcoreutils.git (apply_translations): Don't prohibit conv=unblock,sync. --- diff --git a/src/dd.c b/src/dd.c index 6ab7c3d437..129ab6ab93 100644 --- a/src/dd.c +++ b/src/dd.c @@ -650,11 +650,10 @@ apply_translations (void) #define MX(a) (bit_count (conversions_mask & (a))) if ((MX (C_ASCII | C_EBCDIC | C_IBM) > 1) || (MX (C_BLOCK | C_UNBLOCK) > 1) - || (MX (C_LCASE | C_UCASE) > 1) - || (MX (C_UNBLOCK | C_SYNC) > 1)) + || (MX (C_LCASE | C_UCASE) > 1)) { error (EXIT_FAILURE, 0, _("\ -only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, {unblock,sync}")); + only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}")); } #undef MX