]> git.sur5r.net Git - openldap/blobdiff - contrib/slapd-modules/nssov/ether.c
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
[openldap] / contrib / slapd-modules / nssov / ether.c
index 9f07bbedd24fa9a6037f09300446aefbce6ed2f9..3c63b8b75e31152e62ea3d64047294e0ae2b3a60 100644 (file)
@@ -1,6 +1,8 @@
 /* ether.c - ethernet address lookup routines */
 /* $OpenLDAP$ */
-/*
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 2008-2014 The OpenLDAP Foundation.
  * Copyright 2008 by Howard Chu, Symas Corp.
  * All rights reserved.
  *
@@ -12,7 +14,7 @@
  * top-level directory of the distribution or, alternatively, at
  * <http://www.OpenLDAP.org/license.html>.
  */
-/*
+/* ACKNOWLEDGEMENTS:
  * This code references portions of the nss-ldapd package
  * written by Arthur de Jong. The nss-ldapd code was forked
  * from the nss-ldap library written by Luke Howard.
@@ -109,7 +111,7 @@ static int write_ether(nssov_ether_cbp *cbp,Entry *entry)
        for (i=0;!BER_BVISNULL(&names[i]);i++)
                for (j=0;!BER_BVISNULL(&ethers[j]);j++)
                {
-                       WRITE_INT32(cbp->fp,NSLCD_RESULT_SUCCESS);
+                       WRITE_INT32(cbp->fp,NSLCD_RESULT_BEGIN);
                        WRITE_BERVAL(cbp->fp,&names[i]);
                        WRITE_ETHER(cbp->fp,ethers[j]);
                }
@@ -124,7 +126,7 @@ NSSOV_HANDLE(
        struct berval filter = {sizeof(fbuf)};
        filter.bv_val = fbuf;
        BER_BVZERO(&cbp.addr);
-       READ_STRING_BUF2(fp,cbp.buf,sizeof(cbp.buf));
+       READ_STRING(fp,cbp.buf);
        cbp.name.bv_len = tmpint32;
        cbp.name.bv_val = cbp.buf;,
        Debug(LDAP_DEBUG_TRACE,"nssov_ether_byname(%s)\n",cbp.name.bv_val,0,0);,