svn commit: samba r20007 - in branches/SAMBA_3_0/source/rpc_server: .

vlendec at samba.org vlendec at samba.org
Sat Dec 2 11:18:20 GMT 2006


Author: vlendec
Date: 2006-12-02 11:18:19 +0000 (Sat, 02 Dec 2006)
New Revision: 20007

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

Log:
Fix a const warning just introduced
Modified:
   branches/SAMBA_3_0/source/rpc_server/srv_winreg_nt.c


Changeset:
Modified: branches/SAMBA_3_0/source/rpc_server/srv_winreg_nt.c
===================================================================
--- branches/SAMBA_3_0/source/rpc_server/srv_winreg_nt.c	2006-12-02 10:53:00 UTC (rev 20006)
+++ branches/SAMBA_3_0/source/rpc_server/srv_winreg_nt.c	2006-12-02 11:18:19 UTC (rev 20007)
@@ -433,7 +433,7 @@
 {
 	WERROR err;
 	struct registry_key *key = find_regkey_by_hnd( p, handle );
-	const char *valname;
+	char *valname;
 	struct registry_value *val;
 	DATA_BLOB value_blob;
 	



More information about the samba-cvs mailing list