svn commit: lorikeet r215 - in trunk/ethereal: .

tridge at samba.org tridge at samba.org
Thu Jan 27 06:17:37 GMT 2005


Author: tridge
Date: 2005-01-27 06:17:37 +0000 (Thu, 27 Jan 2005)
New Revision: 215

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

Log:
fixed to use new types from samba4 svn
Modified:
   trunk/ethereal/eparser.c


Changeset:
Modified: trunk/ethereal/eparser.c
===================================================================
--- trunk/ethereal/eparser.c	2005-01-27 04:36:18 UTC (rev 214)
+++ trunk/ethereal/eparser.c	2005-01-27 06:17:37 UTC (rev 215)
@@ -90,7 +90,7 @@
 	return NT_STATUS_OK;
 }
 
-NTSTATUS ndr_pull_uint64(struct pidl_pull *ndr, pidl_tree *tree, int hf, 
+NTSTATUS ndr_pull_udlong(struct pidl_pull *ndr, pidl_tree *tree, int hf, 
 			 uint64_t *data)
 {
         ndr->offset = dissect_ndr_uint64(
@@ -119,10 +119,10 @@
 
 }
 
-NTSTATUS ndr_pull_int64(struct pidl_pull *ndr, pidl_tree *tree, int hf, 
+NTSTATUS ndr_pull_dlong(struct pidl_pull *ndr, pidl_tree *tree, int hf, 
 			int64_t *data)
 {
-	return ndr_pull_uint64(ndr, tree, hf, (uint64_t *)data);
+	return ndr_pull_udlong(ndr, tree, hf, (uint64_t *)data);
 }
 
 NTSTATUS ndr_pull_NTTIME(struct pidl_pull *ndr, pidl_tree *tree, int hf, 



More information about the samba-cvs mailing list