about summary refs log tree commit diff
path: root/db2/btree/bt_conv.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-06-13 13:36:34 +0000
committerUlrich Drepper <drepper@redhat.com>1999-06-13 13:36:34 +0000
commitec239360d13518a13f572b635d036c7d10028010 (patch)
treebdb5111363f45d2107849c2456b575d72779174c /db2/btree/bt_conv.c
parentfc3703521650a9b6db910a50c4fc0f410496e134 (diff)
downloadglibc-ec239360d13518a13f572b635d036c7d10028010.tar.gz
glibc-ec239360d13518a13f572b635d036c7d10028010.tar.xz
glibc-ec239360d13518a13f572b635d036c7d10028010.zip
Update.
	* db2/Makefile (distribute): Remove files which do not exist
	anymore.
Diffstat (limited to 'db2/btree/bt_conv.c')
-rw-r--r--db2/btree/bt_conv.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/db2/btree/bt_conv.c b/db2/btree/bt_conv.c
index 3da4507723..a3069082ae 100644
--- a/db2/btree/bt_conv.c
+++ b/db2/btree/bt_conv.c
@@ -8,7 +8,7 @@
 #include "config.h"
 
 #ifndef lint
-static const char sccsid[] = "@(#)bt_conv.c	10.6 (Sleepycat) 4/10/98";
+static const char sccsid[] = "@(#)bt_conv.c	10.7 (Sleepycat) 9/20/98";
 #endif /* not lint */
 
 #ifndef NO_SYSTEM_INCLUDES
@@ -90,18 +90,5 @@ __bam_mswap(pg)
 	SWAP32(p);		/* free */
 	SWAP32(p);		/* flags */
 
-	/* Swap the statistics. */
-	p = (u_int8_t *)&((BTMETA *)pg)->stat;
-	SWAP32(p);		/* bt_freed */
-	SWAP32(p);		/* bt_pfxsaved */
-	SWAP32(p);		/* bt_split */
-	SWAP32(p);		/* bt_rootsplit */
-	SWAP32(p);		/* bt_fastsplit */
-	SWAP32(p);		/* bt_added */
-	SWAP32(p);		/* bt_deleted */
-	SWAP32(p);		/* bt_get */
-	SWAP32(p);		/* bt_cache_hit */
-	SWAP32(p);		/* bt_cache_miss */
-
 	return (0);
 }