2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 14:25:41 +00:00

[master] Fix some cut and paste type errors in LDAP code

Squashed commit of the following:

    [rt42666] Fix some cut and paste type errors in LDAP code

    Add the character '6' to some strings.  They were cut and pasted
    from the v4 versions and didn't get fully updated.
This commit is contained in:
Shawn Routhier
2016-06-20 07:39:32 -07:00
parent 09dccd0331
commit eb2d84b68e
3 changed files with 10 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
Routines for reading the configuration from LDAP */
/*
* Copyright (c) 2010,2015 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 2010,2015-2016 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 2003-2006 Ntelos, Inc.
* All rights reserved.
*
@@ -638,7 +638,7 @@ ldap_parse_subnet6 (struct ldap_config_stack *item, struct parse *cfile)
ldap_value_free_len (tempbv);
if ((tempbv = ldap_get_values_len (ld, item->ldent, "dhcpRange")) != NULL)
if ((tempbv = ldap_get_values_len (ld, item->ldent, "dhcpRange6")) != NULL)
{
for (i=0; tempbv[i] != NULL; i++)
{
@@ -702,9 +702,9 @@ ldap_parse_pool6 (struct ldap_config_stack *item, struct parse *cfile)
struct berval **tempbv;
int i;
x_parser_strcat (cfile, "pool {\n");
x_parser_strcat (cfile, "pool6 {\n");
if ((tempbv = ldap_get_values_len (ld, item->ldent, "dhcpRange")) != NULL)
if ((tempbv = ldap_get_values_len (ld, item->ldent, "dhcpRange6")) != NULL)
{
x_parser_strcat (cfile, "range6");
for (i=0; tempbv[i] != NULL; i++)