From: Ted Lemon Date: Mon, 4 Oct 1999 23:46:30 +0000 (+0000) Subject: Fix a typo. X-Git-Tag: V3-BETA-1-PATCH-2~5^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eac1e66f4b3f14465473bab8bdc81987bc7bef33;p=thirdparty%2Fdhcp.git Fix a typo. --- diff --git a/common/dispatch.c b/common/dispatch.c index 9bae29d6c..c7ff66688 100644 --- a/common/dispatch.c +++ b/common/dispatch.c @@ -22,7 +22,7 @@ #ifndef lint static char copyright[] = -"$Id: dispatch.c,v 1.57 1999/10/04 23:14:00 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dispatch.c,v 1.58 1999/10/04 23:46:30 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -70,7 +70,7 @@ void dispatch () /* Wait for a packet or a timeout... XXX */ status = omapi_one_dispatch (0, tvp); } while (status == ISC_R_TIMEDOUT || status == ISC_R_SUCCESS); - log_fatal ("omapi_one_dispatch failed: %s -- exiting." + log_fatal ("omapi_one_dispatch failed: %s -- exiting.", isc_result_totext (status)); }