diff options
Diffstat (limited to 'usr.sbin/relayd/hce.c')
-rw-r--r-- | usr.sbin/relayd/hce.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/relayd/hce.c b/usr.sbin/relayd/hce.c index 147b272bfde..bb0596e8a1f 100644 --- a/usr.sbin/relayd/hce.c +++ b/usr.sbin/relayd/hce.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hce.c,v 1.60 2011/05/19 08:56:49 reyk Exp $ */ +/* $OpenBSD: hce.c,v 1.61 2011/11/12 19:36:17 camield Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -289,7 +289,7 @@ hce_dispatch_pfe(int fd, struct privsep_proc *p, struct imsg *imsg) case IMSG_HOST_DISABLE: memcpy(&id, imsg->data, sizeof(id)); if ((host = host_find(env, id)) == NULL) - fatalx("hce_dispatch_imsg: desynchronized"); + fatalx("hce_dispatch_pfe: desynchronized"); host->flags |= F_DISABLE; host->up = HOST_UNKNOWN; host->check_cnt = 0; @@ -299,7 +299,7 @@ hce_dispatch_pfe(int fd, struct privsep_proc *p, struct imsg *imsg) case IMSG_HOST_ENABLE: memcpy(&id, imsg->data, sizeof(id)); if ((host = host_find(env, id)) == NULL) - fatalx("hce_dispatch_imsg: desynchronized"); + fatalx("hce_dispatch_pfe: desynchronized"); host->flags &= ~(F_DISABLE); host->up = HOST_UNKNOWN; host->he = HCE_NONE; @@ -307,7 +307,7 @@ hce_dispatch_pfe(int fd, struct privsep_proc *p, struct imsg *imsg) case IMSG_TABLE_DISABLE: memcpy(&id, imsg->data, sizeof(id)); if ((table = table_find(env, id)) == NULL) - fatalx("hce_dispatch_imsg: desynchronized"); + fatalx("hce_dispatch_pfe: desynchronized"); table->conf.flags |= F_DISABLE; TAILQ_FOREACH(host, &table->hosts, entry) host->up = HOST_UNKNOWN; @@ -315,7 +315,7 @@ hce_dispatch_pfe(int fd, struct privsep_proc *p, struct imsg *imsg) case IMSG_TABLE_ENABLE: memcpy(&id, imsg->data, sizeof(id)); if ((table = table_find(env, id)) == NULL) - fatalx("hce_dispatch_imsg: desynchronized"); + fatalx("hce_dispatch_pfe: desynchronized"); table->conf.flags &= ~(F_DISABLE); TAILQ_FOREACH(host, &table->hosts, entry) host->up = HOST_UNKNOWN; |