upas/send: add \n to error in refuse() (thanks josuah)

front
Ori Bernstein 2021-02-20 15:25:25 -08:00
parent 2d13ac5d39
commit f3a05b16ad
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ findbody(char *p)
int
refuse(dest*, message *, char *cp, int, int)
{
fprint(2, "%s", cp);
fprint(2, "%s\n", cp);
exits("error");
return 0;
}