Ethereal-dev: [Ethereal-dev] Minor packet-nfs.c patch

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Mike Frisch <mfrisch@xxxxxxxxxx>
Date: Tue, 5 Mar 2002 22:26:35 -0500
Removes debug printf statements.
Index: packet-nfs.c
===================================================================
RCS file: /cvsroot/ethereal/packet-nfs.c,v
retrieving revision 1.66
diff -u -r1.66 packet-nfs.c
--- packet-nfs.c	2002/03/01 22:14:22	1.66
+++ packet-nfs.c	2002/03/06 03:24:53
@@ -5850,8 +5850,6 @@
 	{
 		opcode = tvb_get_ntohl(tvb, offset);
 
-		printf("Call Opcode: %d\n", opcode);
-		
 		fitem = proto_tree_add_uint(ftree, hf_nfs_argop4, tvb, offset, 4, 
 			opcode);
 		offset += 4;
@@ -6170,8 +6168,6 @@
 	{
 		opcode = tvb_get_ntohl(tvb, offset);
 
-		printf("Reply opcode: %d\n", opcode);
-
 		/* sanity check for bogus packets */
 		if (opcode < NFS4_OP_ACCESS || opcode > NFS4_OP_WRITE)	break;
 
@@ -6301,8 +6297,6 @@
 				guint flavor;
 				proto_item *fitem;
 				proto_tree *secftree;
-
-				printf("here\n");
 
 				while ((data_follows = tvb_get_ntohl(tvb, offset)))
 				{