On Fri, May 08, 2020 at 06:42:57AM +0200, Claus wrote in
<20200508044257.ga20...@kiel.esmtp.org>:
On Thu, May 07, 2020, Remco Rijnders wrote:
- dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" : "Not"));
+ dprint (1, (debugfile, "WEED is %s\n", (flags & CH_WEED) ? "Set" : "Not
Set"));
Save some bytes:-)
dprint (1, (debugfile, "WEED is %sSet\n", (flags & CH_WEED) ? "" : "Not "));
That's actually (byte for byte) how I had done it at first before
sending in the patch, but decided against it for the sake of clarity.