svn commit: samba r13389 - branches/SAMBA_3_0/source/passdb trunk/source/passdb

vlendec at samba.org vlendec at samba.org
Wed Feb 8 10:36:15 GMT 2006


Author: vlendec
Date: 2006-02-08 10:36:13 +0000 (Wed, 08 Feb 2006)
New Revision: 13389

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13389

Log:
get_ldap_filter is only used once, make it static
Modified:
   branches/SAMBA_3_0/source/passdb/pdb_ldap.c
   trunk/source/passdb/pdb_ldap.c


Changeset:
Modified: branches/SAMBA_3_0/source/passdb/pdb_ldap.c
===================================================================
--- branches/SAMBA_3_0/source/passdb/pdb_ldap.c	2006-02-08 05:14:48 UTC (rev 13388)
+++ branches/SAMBA_3_0/source/passdb/pdb_ldap.c	2006-02-08 10:36:13 UTC (rev 13389)
@@ -3875,7 +3875,7 @@
 	return result;
 }
 
-char *get_ldap_filter(TALLOC_CTX *mem_ctx, const char *username)
+static char *get_ldap_filter(TALLOC_CTX *mem_ctx, const char *username)
 {
 	char *filter = NULL;
 	char *escaped = NULL;

Modified: trunk/source/passdb/pdb_ldap.c
===================================================================
--- trunk/source/passdb/pdb_ldap.c	2006-02-08 05:14:48 UTC (rev 13388)
+++ trunk/source/passdb/pdb_ldap.c	2006-02-08 10:36:13 UTC (rev 13389)
@@ -3875,7 +3875,7 @@
 	return result;
 }
 
-char *get_ldap_filter(TALLOC_CTX *mem_ctx, const char *username)
+static char *get_ldap_filter(TALLOC_CTX *mem_ctx, const char *username)
 {
 	char *filter = NULL;
 	char *escaped = NULL;



More information about the samba-cvs mailing list