Commit 5938420a 5938420ac1baf92af8d0139cef12d7b39fb8fd98 by Sergey Poznyakoff

Do not output extra newline when running with --field option.

1 parent ed1175f9
......@@ -150,7 +150,7 @@ action (observer_t o, size_t type)
int status = header_get_value (hdr, show_field, hfield,
sizeof (hfield), NULL);
if (status == 0)
printf ("%s\n", hfield);
printf ("%s", hfield);
}
if (show_to)
......