svn commit: samba r8091 - in branches/SAMBA_4_0/source/ntptr/simple_ldb: .

idra at samba.org idra at samba.org
Sun Jul 3 08:49:39 GMT 2005


Author: idra
Date: 2005-07-03 08:49:38 +0000 (Sun, 03 Jul 2005)
New Revision: 8091

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

Log:

fix invalid attribute names s/_/-/g
this will fix the build


Modified:
   branches/SAMBA_4_0/source/ntptr/simple_ldb/ntptr_simple_ldb.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntptr/simple_ldb/ntptr_simple_ldb.c
===================================================================
--- branches/SAMBA_4_0/source/ntptr/simple_ldb/ntptr_simple_ldb.c	2005-07-03 06:30:27 UTC (rev 8090)
+++ branches/SAMBA_4_0/source/ntptr/simple_ldb/ntptr_simple_ldb.c	2005-07-03 08:49:38 UTC (rev 8091)
@@ -236,16 +236,16 @@
 		for (i=0; i < count; i++) {
 			info[i].info1.flags		= samdb_result_uint(msgs[i], "flags", SPOOLSS_FORM_BUILTIN);
 
-			info[i].info1.form_name		= samdb_result_string(msgs[i], "form_name", NULL);
+			info[i].info1.form_name		= samdb_result_string(msgs[i], "form-name", NULL);
 			W_ERROR_HAVE_NO_MEMORY(info[i].info1.form_name);
 
-			info[i].info1.size.width	= samdb_result_uint(msgs[i], "size_width", 0);
-			info[i].info1.size.height	= samdb_result_uint(msgs[i], "size_height", 0);
+			info[i].info1.size.width	= samdb_result_uint(msgs[i], "size-width", 0);
+			info[i].info1.size.height	= samdb_result_uint(msgs[i], "size-height", 0);
 
-			info[i].info1.area.left		= samdb_result_uint(msgs[i], "area_left", 0);
-			info[i].info1.area.top		= samdb_result_uint(msgs[i], "area_top", 0);
-			info[i].info1.area.right	= samdb_result_uint(msgs[i], "area_right", 0);
-			info[i].info1.area.bottom	= samdb_result_uint(msgs[i], "area_bottom", 0);
+			info[i].info1.area.left		= samdb_result_uint(msgs[i], "area-left", 0);
+			info[i].info1.area.top		= samdb_result_uint(msgs[i], "area-top", 0);
+			info[i].info1.area.right	= samdb_result_uint(msgs[i], "area-right", 0);
+			info[i].info1.area.bottom	= samdb_result_uint(msgs[i], "area-bottom", 0);
 		}
 		break;
 	default:
@@ -277,7 +277,7 @@
 			return WERR_FOOBAR;
 		}
 		count = sptr_db_search(sptr_db, mem_ctx, "CN=Forms,CN=PrintServer", &msgs, attrs,
-				       "(&(form_name=%s)(objectClass=form))",
+				       "(&(form-name=%s)(objectClass=form))",
 				       r->in.info.info1->form_name);
 
 		if (count == 1) return WERR_FOOBAR;
@@ -292,21 +292,21 @@
 		W_ERROR_HAVE_NO_MEMORY(msg);
 
 		/* add core elements to the ldb_message for the Form */
-		msg->dn = talloc_asprintf(msg, "form_name=%s,CN=Forms,CN=PrintServer",
+		msg->dn = talloc_asprintf(msg, "form-name=%s,CN=Forms,CN=PrintServer",
 						r->in.info.info1->form_name);
 		SET_STRING(sptr_db, msg, "objectClass", "form");
 
 		SET_UINT(sptr_db, msg, "flags", r->in.info.info1->flags);
 
-		SET_STRING(sptr_db, msg, "form_name", r->in.info.info1->form_name);
+		SET_STRING(sptr_db, msg, "form-name", r->in.info.info1->form_name);
 
-		SET_UINT(sptr_db, msg, "size_width", r->in.info.info1->size.width);
-		SET_UINT(sptr_db, msg, "size_height", r->in.info.info1->size.height);
+		SET_UINT(sptr_db, msg, "size-width", r->in.info.info1->size.width);
+		SET_UINT(sptr_db, msg, "size-height", r->in.info.info1->size.height);
 
-		SET_UINT(sptr_db, msg, "area_left", r->in.info.info1->area.left);
-		SET_UINT(sptr_db, msg, "area_top", r->in.info.info1->area.top);
-		SET_UINT(sptr_db, msg, "area_right", r->in.info.info1->area.right);
-		SET_UINT(sptr_db, msg, "area_bottom", r->in.info.info1->area.bottom);
+		SET_UINT(sptr_db, msg, "area-left", r->in.info.info1->area.left);
+		SET_UINT(sptr_db, msg, "area-top", r->in.info.info1->area.top);
+		SET_UINT(sptr_db, msg, "area-right", r->in.info.info1->area.right);
+		SET_UINT(sptr_db, msg, "area-bottom", r->in.info.info1->area.bottom);
 		break;
 	default:
 		return WERR_UNKNOWN_LEVEL;
@@ -342,7 +342,7 @@
 		}
 
 		count = sptr_db_search(sptr_db, mem_ctx, "CN=Forms,CN=PrintServer", &msgs, attrs,
-				       "(&(form_name=%s)(objectClass=form))",
+				       "(&(form-name=%s)(objectClass=form))",
 				       r->in.info.info1->form_name);
 
 		if (count == 0) return WERR_FOOBAR;
@@ -362,15 +362,15 @@
 
 		SET_UINT(sptr_db, msg, "flags", r->in.info.info1->flags);
 
-		SET_STRING(sptr_db, msg, "form_name", r->in.info.info1->form_name);
+		SET_STRING(sptr_db, msg, "form-name", r->in.info.info1->form_name);
 
-		SET_UINT(sptr_db, msg, "size_width", r->in.info.info1->size.width);
-		SET_UINT(sptr_db, msg, "size_height", r->in.info.info1->size.height);
+		SET_UINT(sptr_db, msg, "size-width", r->in.info.info1->size.width);
+		SET_UINT(sptr_db, msg, "size-height", r->in.info.info1->size.height);
 
-		SET_UINT(sptr_db, msg, "area_left", r->in.info.info1->area.left);
-		SET_UINT(sptr_db, msg, "area_top", r->in.info.info1->area.top);
-		SET_UINT(sptr_db, msg, "area_right", r->in.info.info1->area.right);
-		SET_UINT(sptr_db, msg, "area_bottom", r->in.info.info1->area.bottom);
+		SET_UINT(sptr_db, msg, "area-left", r->in.info.info1->area.left);
+		SET_UINT(sptr_db, msg, "area-top", r->in.info.info1->area.top);
+		SET_UINT(sptr_db, msg, "area-right", r->in.info.info1->area.right);
+		SET_UINT(sptr_db, msg, "area-bottom", r->in.info.info1->area.bottom);
 		break;
 	default:
 		return WERR_UNKNOWN_LEVEL;
@@ -404,7 +404,7 @@
 	}
 
 	count = sptr_db_search(sptr_db, mem_ctx, "CN=Forms,CN=PrintServer", &msgs, attrs,
-			       "(&(form_name=%s)(objectclass=form))",
+			       "(&(form-name=%s)(objectclass=form))",
 			       r->in.form_name);
 
 	if (count == 0) return WERR_FOOBAR;
@@ -613,22 +613,22 @@
 	switch (r->in.level) {
 	case 1:
 		for (i = 0; i < count; i++) {
-			info[i].info1.port_name		= samdb_result_string(msgs[i], "port_name", "");
+			info[i].info1.port_name		= samdb_result_string(msgs[i], "port-name", "");
 			W_ERROR_HAVE_NO_MEMORY(info[i].info1.port_name);
 		}
 		break;
 	case 2:
 		for (i=0; i < count; i++) {
-			info[i].info2.port_name		= samdb_result_string(msgs[i], "port_name", "");
+			info[i].info2.port_name		= samdb_result_string(msgs[i], "port-name", "");
 			W_ERROR_HAVE_NO_MEMORY(info[i].info2.port_name);
 
-			info[i].info2.monitor_name	= samdb_result_string(msgs[i], "monitor_name", "");
+			info[i].info2.monitor_name	= samdb_result_string(msgs[i], "monitor-name", "");
 			W_ERROR_HAVE_NO_MEMORY(info[i].info2.monitor_name);
 
 			info[i].info2.description	= samdb_result_string(msgs[i], "description", "");
 			W_ERROR_HAVE_NO_MEMORY(info[i].info2.description);
 
-			info[i].info2.port_type		= samdb_result_uint(msgs[i], "port_type", SPOOLSS_PORT_TYPE_WRITE);
+			info[i].info2.port_type		= samdb_result_uint(msgs[i], "port-type", SPOOLSS_PORT_TYPE_WRITE);
 			info[i].info2.reserved		= samdb_result_uint(msgs[i], "reserved", 0);
 		}
 		break;
@@ -663,19 +663,19 @@
 	switch (r->in.level) {
 	case 1:
 		for (i = 0; i < count; i++) {
-			info[i].info1.monitor_name	= samdb_result_string(msgs[i], "monitor_name", "");
+			info[i].info1.monitor_name	= samdb_result_string(msgs[i], "monitor-name", "");
 			W_ERROR_HAVE_NO_MEMORY(info[i].info1.monitor_name);
 		}
 		break;
 	case 2:
 		for (i=0; i < count; i++) {
-			info[i].info2.monitor_name	= samdb_result_string(msgs[i], "monitor_name", "");
+			info[i].info2.monitor_name	= samdb_result_string(msgs[i], "monitor-name", "");
 			W_ERROR_HAVE_NO_MEMORY(info[i].info2.monitor_name);
 
 			info[i].info2.environment	= samdb_result_string(msgs[i], "environment", "");
 			W_ERROR_HAVE_NO_MEMORY(info[i].info2.environment);
 
-			info[i].info2.dll_name		= samdb_result_string(msgs[i], "dll_name", "");
+			info[i].info2.dll_name		= samdb_result_string(msgs[i], "dll-name", "");
 			W_ERROR_HAVE_NO_MEMORY(info[i].info2.dll_name);
 		}
 		break;
@@ -709,7 +709,7 @@
 	W_ERROR_HAVE_NO_MEMORY(base_dn);
 
 	count = sptr_db_search(sptr_db, mem_ctx, base_dn, &msgs, NULL,
-			       "(&(form_name=%s)(objectClass=form))",
+			       "(&(form-name=%s)(objectClass=form))",
 			       r->in.form_name);
 
 	if (count == 0) return WERR_FOOBAR;
@@ -723,16 +723,16 @@
 	case 1:
 		info->info1.flags	= samdb_result_uint(msgs[0], "flags", SPOOLSS_FORM_BUILTIN);
 
-		info->info1.form_name	= samdb_result_string(msgs[0], "form_name", NULL);
+		info->info1.form_name	= samdb_result_string(msgs[0], "form-name", NULL);
 		W_ERROR_HAVE_NO_MEMORY(info->info1.form_name);
 
-		info->info1.size.width	= samdb_result_uint(msgs[0], "size_width", 0);
-		info->info1.size.height	= samdb_result_uint(msgs[0], "size_height", 0);
+		info->info1.size.width	= samdb_result_uint(msgs[0], "size-width", 0);
+		info->info1.size.height	= samdb_result_uint(msgs[0], "size-height", 0);
 
-		info->info1.area.left	= samdb_result_uint(msgs[0], "area_left", 0);
-		info->info1.area.top	= samdb_result_uint(msgs[0], "area_top", 0);
-		info->info1.area.right	= samdb_result_uint(msgs[0], "area_right", 0);
-		info->info1.area.bottom	= samdb_result_uint(msgs[0], "area_bottom", 0);
+		info->info1.area.left	= samdb_result_uint(msgs[0], "area-left", 0);
+		info->info1.area.top	= samdb_result_uint(msgs[0], "area-top", 0);
+		info->info1.area.right	= samdb_result_uint(msgs[0], "area-right", 0);
+		info->info1.area.bottom	= samdb_result_uint(msgs[0], "area-bottom", 0);
 		break;
 	default:
 		return WERR_UNKNOWN_LEVEL;



More information about the samba-cvs mailing list