• Poul-Henning Kamp's avatar
    Merge from VTEST: · debba396
    Poul-Henning Kamp authored
        Avoid VSB_printf for static strings
    
        Done with the following semantic patch for Coccinelle:
    
            @@
            expression vsb, fmt;
            @@
    
            - VSB_printf(vsb, fmt);
            + VSB_cat(vsb, fmt);
    
        This patch is available in the Varnish source tree.
    debba396
vtc_proxy.c 3.61 KB