svn commit: samba r19304 - in branches/SAMBA_4_0/source/lib/talloc: .

idra at samba.org idra at samba.org
Mon Oct 16 01:00:51 GMT 2006


Author: idra
Date: 2006-10-16 01:00:47 +0000 (Mon, 16 Oct 2006)
New Revision: 19304

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

Log:

If you really want to look at the contents undef this one


Modified:
   branches/SAMBA_4_0/source/lib/talloc/talloc.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/talloc/talloc.c
===================================================================
--- branches/SAMBA_4_0/source/lib/talloc/talloc.c	2006-10-16 01:00:04 UTC (rev 19303)
+++ branches/SAMBA_4_0/source/lib/talloc/talloc.c	2006-10-16 01:00:47 UTC (rev 19304)
@@ -886,6 +886,23 @@
 		(unsigned long)talloc_total_size(ptr),
 		(unsigned long)talloc_total_blocks(ptr),
 		(int)talloc_reference_count(ptr));
+
+#if 0
+	fprintf(f, "content: ");
+	if (talloc_total_size(ptr)) {
+		int tot = talloc_total_size(ptr);
+		int i;
+
+		for (i = 0; i < tot; i++) {
+			if ((((char *)ptr)[i] > 31) && (((char *)ptr)[i] < 126)) {
+				fprintf(f, "%c", ((char *)ptr)[i]);
+			} else {
+				fprintf(f, "~%02x", ((char *)ptr)[i]);
+			}
+		}
+	}
+	fprintf(f, "\n");
+#endif
 }
 
 /*



More information about the samba-cvs mailing list