Skip to content
Snippets Groups Projects
Commit d7cc1471 authored by Steven Murray's avatar Steven Murray
Browse files

bug #101881: RFE: Remove unused stager DB reference from tape server code

Fixed in the trunk.
parent d789c423
No related branches found
No related tags found
No related merge requests found
......@@ -241,14 +241,6 @@ typedef struct rtcpDumpTapeRequest {
} rtcpDumpTapeRequest_t;
#define RTCP_DUMPTAPEREQLEN (8*LONGSIZE)
/*
* Opaque DB reference for use in the new stager
*/
typedef struct RtcpDBRef {
u_signed64 key; /* Catalogue DB key */
void *row; /* Catalogue DB row */
} RtcpDBRef_t;
/*
* Circular lists of tape and file requests. (Client only)
*/
......@@ -258,7 +250,6 @@ typedef struct tape_list {
* local retry. This is needed
* to prevent Ctape_reserve() from
* being called twice. */
RtcpDBRef_t *dbRef; /* DB reference used in new stager */
rtcpTapeRequest_t tapereq;
rtcpDumpTapeRequest_t dumpreq; /* Only used if file == NULL */
struct file_list *file; /* List of files for this tape */
......@@ -311,7 +302,6 @@ typedef struct file_list {
const char *,
unsigned int
);
RtcpDBRef_t *dbRef; /* DB reference used in new stager */
rtcpFileRequest_t filereq;
struct tape_list *tape; /* Parent tape request */
struct file_list *next; /* Next in circular list */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment