[master] 15f3ecff3 Flexelinting: Avoid stuff which looks like trigraphs

Poul-Henning Kamp phk at FreeBSD.org
Thu Oct 3 09:06:07 UTC 2019


commit 15f3ecff31f59d2893a80434601d1196d5ca5607
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Thu Oct 3 09:04:12 2019 +0000

    Flexelinting:  Avoid stuff which looks like trigraphs

diff --git a/bin/varnishd/cache/cache_panic.c b/bin/varnishd/cache/cache_panic.c
index aa9d914b7..37ea6b8fd 100644
--- a/bin/varnishd/cache/cache_panic.c
+++ b/bin/varnishd/cache/cache_panic.c
@@ -647,7 +647,7 @@ pan_backtrace(struct vsb *vsb)
 		unw_get_reg(&cursor, UNW_REG_SP, &sp);
 		unw_get_proc_name(&cursor, fname, sizeof(fname), &offp);
 		VSB_printf(vsb, "ip=0x%lx, sp=0x%lx <%s+0x%lx>\n", (long) ip,
-		    (long) sp, fname[0] ? fname : "???", offp);
+		    (long) sp, fname[0] ? fname : "<unknown>", offp);
 	}
 
 	VSB_indent(vsb, -2);


More information about the varnish-commit mailing list