diff options
Diffstat (limited to 'sbin/ggate')
-rw-r--r-- | sbin/ggate/ggated/ggated.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ggate/ggated/ggated.c b/sbin/ggate/ggated/ggated.c index b211ccc..74784e7 100644 --- a/sbin/ggate/ggated/ggated.c +++ b/sbin/ggate/ggated/ggated.c @@ -211,10 +211,10 @@ line_parse(char *line, unsigned lineno) 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); |