diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-01 05:22:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:08 -0500 |
commit | 48ce437be2e3da6d67844dfed3d574986c55a67e (patch) | |
tree | 3337eea0722b11b2a028077ad5244023902fdef0 /source4/lib/tdb | |
parent | 9f1210a243654fd6d94acdef83f468a33c1b3b3f (diff) | |
download | samba-48ce437be2e3da6d67844dfed3d574986c55a67e.tar.gz samba-48ce437be2e3da6d67844dfed3d574986c55a67e.tar.bz2 samba-48ce437be2e3da6d67844dfed3d574986c55a67e.zip |
r3421: got rid of some unused code
(This used to be commit 0333f417a86a54a328ca9bd908076f9fe8405dc7)
Diffstat (limited to 'source4/lib/tdb')
-rw-r--r-- | source4/lib/tdb/tools/tdbtool.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/source4/lib/tdb/tools/tdbtool.c b/source4/lib/tdb/tools/tdbtool.c index 92009dcef4..50486122bc 100644 --- a/source4/lib/tdb/tools/tdbtool.c +++ b/source4/lib/tdb/tools/tdbtool.c @@ -343,43 +343,13 @@ static void move_rec(void) return; } -#if 0 -static int print_conn_key(TDB_DATA key) -{ - printf( "pid =%5d ", ((connections_key*)key.dptr)->pid); - printf( "cnum =%10d ", ((connections_key*)key.dptr)->cnum); - printf( "name =[%s]\n", ((connections_key*)key.dptr)->name); - return 0; -} - -static int print_conn_data(TDB_DATA dbuf) -{ - printf( "pid =%5d ", ((connections_data*)dbuf.dptr)->pid); - printf( "cnum =%10d ", ((connections_data*)dbuf.dptr)->cnum); - printf( "name =[%s]\n", ((connections_data*)dbuf.dptr)->name); - - printf( "uid =%5d ", ((connections_data*)dbuf.dptr)->uid); - printf( "addr =[%s]\n", ((connections_data*)dbuf.dptr)->addr); - printf( "gid =%5d ", ((connections_data*)dbuf.dptr)->gid); - printf( "machine=[%s]\n", ((connections_data*)dbuf.dptr)->machine); - printf( "start = %s\n", ctime(&((connections_data*)dbuf.dptr)->start)); - return 0; -} -#endif - static int print_rec(TDB_CONTEXT *the_tdb, TDB_DATA key, TDB_DATA dbuf, void *state) { -#if 0 - print_conn_key(key); - print_conn_data(dbuf); - return 0; -#else printf("\nkey %d bytes\n", key.dsize); print_asc(key.dptr, key.dsize); printf("\ndata %d bytes\n", dbuf.dsize); print_data(dbuf.dptr, dbuf.dsize); return 0; -#endif } static int print_key(TDB_CONTEXT *the_tdb, TDB_DATA key, TDB_DATA dbuf, void *state) |