'comparison', not 'comparision' (hi Matthias!)
This commit is contained in:
parent
15dd275fb1
commit
67e1c672d0
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static const char rcsid[] = "$Id: ns_parse.c,v 1.4 2002/06/11 14:50:30 drochner Exp $";
|
||||
static const char rcsid[] = "$Id: ns_parse.c,v 1.5 2002/06/11 15:22:57 wiz Exp $";
|
||||
#endif
|
||||
|
||||
/* Import. */
|
||||
|
@ -134,7 +134,7 @@ isc_result_t
|
|||
ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) {
|
||||
int b;
|
||||
isc_result_t status;
|
||||
int tmp; /* XXX used to force a signed comparision below */
|
||||
int tmp; /* XXX used to force a signed comparison below */
|
||||
|
||||
/* Make section right. */
|
||||
if ((tmp = section) < 0 || section >= ns_s_max)
|
||||
|
|
|
@ -119,7 +119,7 @@ static const char *text[ISC_R_NRESULTS] = {
|
|||
|
||||
const char *isc_result_totext (isc_result_t result)
|
||||
{
|
||||
int tmp; /* XXX used to force a signed comparision below */
|
||||
int tmp; /* XXX used to force a signed comparison below */
|
||||
|
||||
if ((tmp = result) >= ISC_R_SUCCESS && result < ISC_R_NRESULTS)
|
||||
return text [result];
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
|
||||
#ifndef lint
|
||||
static char copyright[] =
|
||||
"$Id: failover.c,v 1.6 2002/06/11 15:16:28 drochner Exp $ Copyright (c) 1999-2001 The Internet Software Consortium. All rights reserved.\n";
|
||||
"$Id: failover.c,v 1.7 2002/06/11 15:22:59 wiz Exp $ Copyright (c) 1999-2001 The Internet Software Consortium. All rights reserved.\n";
|
||||
#endif /* not lint */
|
||||
|
||||
#include "dhcpd.h"
|
||||
|
@ -794,7 +794,7 @@ isc_result_t dhcp_failover_link_get_value (omapi_object_t *h,
|
|||
omapi_value_t **value)
|
||||
{
|
||||
dhcp_failover_link_t *link;
|
||||
int tmp; /* XXX used to force a signed comparision below */
|
||||
int tmp; /* XXX used to force a signed comparison below */
|
||||
|
||||
if (h -> type != omapi_type_protocol)
|
||||
return ISC_R_INVALIDARG;
|
||||
|
@ -847,7 +847,7 @@ isc_result_t dhcp_failover_link_stuff_values (omapi_object_t *c,
|
|||
{
|
||||
dhcp_failover_link_t *link;
|
||||
isc_result_t status;
|
||||
int tmp; /* XXX used to force a signed comparision below */
|
||||
int tmp; /* XXX used to force a signed comparison below */
|
||||
|
||||
if (l -> type != dhcp_type_failover_link)
|
||||
return ISC_R_INVALIDARG;
|
||||
|
|
Loading…
Reference in New Issue