svn commit: samba r19189 - in branches/SAMBA_3_0/source/libgpo: .

gd at samba.org gd at samba.org
Mon Oct 9 08:11:36 GMT 2006


Author: gd
Date: 2006-10-09 08:11:35 +0000 (Mon, 09 Oct 2006)
New Revision: 19189

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

Log:
No display name is normal for some GPOs.

Guenther

Modified:
   branches/SAMBA_3_0/source/libgpo/gpo_parse.c


Changeset:
Modified: branches/SAMBA_3_0/source/libgpo/gpo_parse.c
===================================================================
--- branches/SAMBA_3_0/source/libgpo/gpo_parse.c	2006-10-09 08:00:18 UTC (rev 19188)
+++ branches/SAMBA_3_0/source/libgpo/gpo_parse.c	2006-10-09 08:11:35 UTC (rev 19189)
@@ -43,11 +43,9 @@
 
 	if ((name = iniparser_getstring(d, GPT_INI_SECTION_GENERAL
 			":"GPT_INI_PARAMETER_DISPLAYNAME, NULL)) == NULL) {
-		DEBUG(1,("parse_gpt_ini: no name\n"));
-		/* 
-		result = NT_STATUS_INTERNAL_DB_CORRUPTION; 
-		goto out;
-		*/
+		/* the default domain policy and the default domain controller
+		 * policy never have a displayname in their gpt.ini file */
+		DEBUG(10,("parse_gpt_ini: no name in %s\n", filename));
 	}
 
 	if (name && display_name) {



More information about the samba-cvs mailing list