Exemplo n.º 1
0
afs_int32
SBUDB_DumpDB(struct rx_call *call, int firstcall, afs_int32 maxLength,
             charListT *charListPtr, afs_int32 *done)
{
    afs_int32 code;

    code = DumpDB(call, firstcall, maxLength, charListPtr, done);
    osi_auditU(call, BUDB_DmpDBEvent, code, AUD_END);
    return code;
}
Exemplo n.º 2
0
static	void
DumpRecord(
	RecordStruct	*db)
{
ENTER_FUNC;
	DumpDB(db->opt.db);
	nTab = 2;
	printf("\t\t%s\t",db->name);
	DumpItems(2,db->value);
	printf(";\n");
LEAVE_FUNC;
}