svn commit: samba r16994 - in branches/SAMBA_3_0/source/libndr: .

jra at samba.org jra at samba.org
Wed Jul 12 19:33:51 GMT 2006


Author: jra
Date: 2006-07-12 19:33:51 +0000 (Wed, 12 Jul 2006)
New Revision: 16994

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

Log:
Fix bug #3923, reported by jason at ncac.gwu.edu. Incorrect type
used.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/libndr/ndr_string.c


Changeset:
Modified: branches/SAMBA_3_0/source/libndr/ndr_string.c
===================================================================
--- branches/SAMBA_3_0/source/libndr/ndr_string.c	2006-07-12 19:23:49 UTC (rev 16993)
+++ branches/SAMBA_3_0/source/libndr/ndr_string.c	2006-07-12 19:33:51 UTC (rev 16994)
@@ -549,7 +549,7 @@
 	return NT_STATUS_OK;
 }
 
-NTSTATUS ndr_pull_charset(struct ndr_pull *ndr, int ndr_flags, const char **var, uint32_t length, uint8_t byte_mul, int chset)
+NTSTATUS ndr_pull_charset(struct ndr_pull *ndr, int ndr_flags, const char **var, uint32_t length, uint8_t byte_mul, charset_t chset)
 {
 	int ret;
 	if (length == 0) {



More information about the samba-cvs mailing list