Commit f578ea1d authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Allow 1KB in vtc_dump so backend poll info is complete

parent cf41aff8
......@@ -187,7 +187,7 @@ vtc_dump(struct vtclog *vl, int lvl, const char *pfx, const char *str, int len)
if (len < 0)
len = strlen(str);
for (l = 0; l < len; l++, str++) {
if (l > 512 && olen != -2) {
if (l > 1024 && olen != -2) {
VSB_printf(vl->vsb, "...");
break;
}
......
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