Commit d01d7966 d01d796608b10b1388646c258761c9fffc1c979c by Sergey Poznyakoff

Minor bugfix in builtin_mbox().

1 parent 4bd0d2bb
......@@ -1067,7 +1067,7 @@ builtin_mbox (struct mh_machine *mach)
{
char *p = strchr (buf, '@');
if (p)
*p = NULL;
*p = 0;
strobj_create (&mach->arg_str, p);
}
address_destroy (&addr);
......