Date: Wed, 18 Jun 2008 16:44:58 GMT From: Hywel Mallett <Hywel@hmallett.co.uk> To: freebsd-gnats-submit@FreeBSD.org Subject: kern/124723: Typo in error message in ggated.c Message-ID: <200806181644.m5IGiwDp093905@www.freebsd.org> Resent-Message-ID: <200806181650.m5IGo17m079771@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 124723
>Category: kern
>Synopsis: Typo in error message in ggated.c
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Wed Jun 18 16:50:01 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator: Hywel Mallett
>Release: 7-RELENG
>Organization:
>Environment:
FreeBSD one.option13.co.uk 7.0-STABLE FreeBSD 7.0-STABLE #0: Sun May 4 19:43:28 BST 2008 hywel@one.option13.co.uk:/usr/obj/usr/src/sys/GENERIC amd64
>Description:
In ggated there is an error message "No enough memory", which should (probably) read "Not enough memory".
>How-To-Repeat:
>Fix:
Patch for src/sbin/ggate/ggated/ggated.c attached
Patch attached with submission follows:
--- /usr/src/sbin/ggate/ggated/ggated.c 2006-12-18 11:12:00.000000000 +0000
+++ ggated.c 2008-06-18 17:39:26.000000000 +0100
@@ -211,10 +211,10 @@
ex = malloc(sizeof(*ex));
if (ex == NULL)
- g_gate_xlog("No enough memory.");
+ g_gate_xlog("Not enough memory.");
ex->e_path = strdup(path);
if (ex->e_path == NULL)
- g_gate_xlog("No enough memory.");
+ g_gate_xlog("Not enough memory.");
/* Made 'and' here. */
ex->e_ip = (ip & mask);
>Release-Note:
>Audit-Trail:
>Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200806181644.m5IGiwDp093905>
