From 2c88f2905bdbdbeac766df36b0dbaeeaa54843ac Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Thu, 5 Jul 2007 11:26:34 +0200 Subject: [PATCH] Fixed a typo. --- src/box.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/box.c b/src/box.c index 17e1487..7bff340 100644 --- a/src/box.c +++ b/src/box.c @@ -264,11 +264,11 @@ valid_syscall(struct user *u) return allow_times; case __NR_kill: if (u->regs.ebx == box_pid) - die("Commited suicide by signal %d", (int)u->regs.ecx); + die("Committed suicide by signal %d", (int)u->regs.ecx); return 0; case __NR_tgkill: if (u->regs.ebx == box_pid && u->regs.ecx == box_pid) - die("Commited suicide by signal %d", (int)u->regs.edx); + die("Committed suicide by signal %d", (int)u->regs.edx); return 0; default: return 0; -- 2.39.2