Author: jra Date: 2005-08-01 19:47:55 +0000 (Mon, 01 Aug 2005) New Revision: 8891
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8891 Log: Fix #2942 - missing value in debug ! Doh ! Jeremy. Modified: trunk/source/lib/smbldap.c Changeset: Modified: trunk/source/lib/smbldap.c =================================================================== --- trunk/source/lib/smbldap.c 2005-08-01 18:26:04 UTC (rev 8890) +++ trunk/source/lib/smbldap.c 2005-08-01 19:47:55 UTC (rev 8891) @@ -465,7 +465,7 @@ the old value, should it exist. */ if ((newval != NULL) && (strlen(newval) > 0)) { - DEBUG(10,("smbldap_make_mod: adding attribute |%s| value |%s|\n", attribute)); + DEBUG(10,("smbldap_make_mod: adding attribute |%s| value |%s|\n", attribute, newval)); smbldap_set_mod(mods, LDAP_MOD_ADD, attribute, newval); } }