Commit 5128c660 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Dont produce \v when we VSB_quote data.

parent 372093f5
......@@ -626,9 +626,6 @@ VSB_quote_pfx(struct vsb *s, const char *pfx, const void *v, int len, int how)
case '\t':
VSB_cat(s, "\\t");
break;
case '\v':
VSB_cat(s, "\\v");
break;
default:
if (0x20 <= *q && *q <= 0x7e)
VSB_putc(s, *q);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment