From: Po Liu Date: Mon, 29 Jun 2020 02:04:19 +0000 (+0800) Subject: action police: change the print message quotes style X-Git-Tag: v5.9.0~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c5570706beb911b2db1096ce5204a099411f758;p=thirdparty%2Fiproute2.git action police: change the print message quotes style Change the double quotes to single quotes in fprintf message to make it more readable. Signed-off-by: Po Liu Signed-off-by: David Ahern --- diff --git a/tc/m_police.c b/tc/m_police.c index a5bc20c02..7eb47f8e3 100644 --- a/tc/m_police.c +++ b/tc/m_police.c @@ -162,23 +162,23 @@ action_ctrl_ok: /* Must at least do late binding, use TB or ewma policing */ if (!rate64 && !avrate && !p.index) { - fprintf(stderr, "\"rate\" or \"avrate\" MUST be specified.\n"); + fprintf(stderr, "'rate' or 'avrate' MUST be specified.\n"); return -1; } /* When the TB policer is used, burst is required */ if (rate64 && !buffer && !avrate) { - fprintf(stderr, "\"burst\" requires \"rate\".\n"); + fprintf(stderr, "'burst' requires 'rate'.\n"); return -1; } if (prate64) { if (!rate64) { - fprintf(stderr, "\"peakrate\" requires \"rate\".\n"); + fprintf(stderr, "'peakrate' requires 'rate'.\n"); return -1; } if (!mtu) { - fprintf(stderr, "\"mtu\" is required, if \"peakrate\" is requested.\n"); + fprintf(stderr, "'mtu' is required, if 'peakrate' is requested.\n"); return -1; } }