svn commit: samba r18816 - in branches/SAMBA_3_0/source/libads: .

gd at samba.org gd at samba.org
Fri Sep 22 09:00:59 GMT 2006


Author: gd
Date: 2006-09-22 09:00:59 +0000 (Fri, 22 Sep 2006)
New Revision: 18816

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

Log:
Fix some build warnings.

Guenther

Modified:
   branches/SAMBA_3_0/source/libads/gpo.c


Changeset:
Modified: branches/SAMBA_3_0/source/libads/gpo.c
===================================================================
--- branches/SAMBA_3_0/source/libads/gpo.c	2006-09-22 08:36:30 UTC (rev 18815)
+++ branches/SAMBA_3_0/source/libads/gpo.c	2006-09-22 09:00:59 UTC (rev 18816)
@@ -211,7 +211,7 @@
 {
 	ADS_STATUS status;
 	const char *attrs[] = {"gPLink", "gPOptions", NULL};
-	void *res = NULL;
+	LDAPMessage *res = NULL;
 	const char *gp_link;
 	uint32 gp_options;
 
@@ -254,7 +254,7 @@
 {
 	ADS_STATUS status;
 	const char *attrs[] = {"gPLink", NULL};
-	void *res = NULL;
+	LDAPMessage *res = NULL;
 	const char *gp_link, *gp_link_new;
 	ADS_MODLIST mods;
 
@@ -309,7 +309,7 @@
 {
 	ADS_STATUS status;
 	const char *attrs[] = {"gPLink", NULL};
-	void *res = NULL;
+	LDAPMessage *res = NULL;
 	const char *gp_link, *gp_link_new = NULL;
 	ADS_MODLIST mods;
 
@@ -432,7 +432,7 @@
 		       struct GROUP_POLICY_OBJECT *gpo)
 {
 	ADS_STATUS status;
-	void *res = NULL;
+	LDAPMessage *res = NULL;
 	char *dn;
 	const char *filter;
 	const char *attrs[] = { "cn", "displayName", "flags", "gPCFileSysPath", 



More information about the samba-cvs mailing list