Skip to content

Commit b7da38c

Browse files
committed
References lp:1219510 - removed stale declarations
1 parent 809194c commit b7da38c

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

Diff for: wsrep_api.h

+1-7
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ extern "C" {
3030
* wsrep replication API
3131
*/
3232

33-
#define WSREP_INTERFACE_VERSION "24rc1"
33+
#define WSREP_INTERFACE_VERSION "24rc2"
3434

3535
/*! Empty backend spec */
3636
#define WSREP_NONE "none"
@@ -77,7 +77,6 @@ extern "C" {
7777

7878
typedef uint64_t wsrep_trx_id_t; //!< application transaction ID
7979
typedef uint64_t wsrep_conn_id_t; //!< application connection ID
80-
typedef uint64_t wsrep_stream_t; //!< event/stream type of encapsulated event
8180
typedef int64_t wsrep_seqno_t; //!< sequence number of a writeset, etc.
8281
#ifdef __cplusplus
8382
typedef bool wsrep_bool_t;
@@ -1004,11 +1003,6 @@ struct wsrep_ {
10041003
*/
10051004
const char* provider_vendor;
10061005

1007-
/*!
1008-
* wsrep provider stream type
1009-
*/
1010-
wsrep_stream_t provider_type;
1011-
10121006
/*!
10131007
* @brief Frees allocated resources before unloading the library.
10141008
* @param wsrep provider handle

Diff for: wsrep_loader.c

-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ static int verify(const wsrep_t *wh, const char *iface_ver)
9191
VERIFY(wh->provider_name);
9292
VERIFY(wh->provider_version);
9393
VERIFY(wh->provider_vendor);
94-
VERIFY(wh->provider_type);
9594
VERIFY(wh->free);
9695
return 0;
9796
}

0 commit comments

Comments
 (0)