Skip to content

Commit

Permalink
Remove LIBSASL_API to sasldb
Browse files Browse the repository at this point in the history
It's build as a static library, and thus do not use exported symbols.
  • Loading branch information
elmarco authored and nacho committed Jan 29, 2016
1 parent 1c94516 commit 1518b84
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sasldb/sasldb.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ int _sasldb_putdata(const sasl_utils_t *utils,
const char *data, size_t data_len);

/* Should be run before any db access is attempted */
LIBSASL_API int _sasl_check_db(const sasl_utils_t *utils,
int _sasl_check_db(const sasl_utils_t *utils,
sasl_conn_t *conn);

/* These allow iterating through the keys of the database */
Expand All @@ -84,15 +84,15 @@ typedef int (* sasldb_list_callback_t) (const char *authid,
const char *property,
void *rock);

LIBSASL_API sasldb_handle _sasldb_getkeyhandle(const sasl_utils_t *utils,
sasldb_handle _sasldb_getkeyhandle(const sasl_utils_t *utils,
sasl_conn_t *conn);
LIBSASL_API int _sasldb_getnextkey(const sasl_utils_t *utils,
int _sasldb_getnextkey(const sasl_utils_t *utils,
sasldb_handle handle, char *out,
const size_t max_out, size_t *out_len);
LIBSASL_API int _sasldb_releasekeyhandle(const sasl_utils_t *utils,
int _sasldb_releasekeyhandle(const sasl_utils_t *utils,
sasldb_handle handle);

LIBSASL_API int _sasldb_listusers(const sasl_utils_t *utils,
int _sasldb_listusers(const sasl_utils_t *utils,
sasl_conn_t *context,
sasldb_list_callback_t callback,
void *callback_rock);
Expand Down

0 comments on commit 1518b84

Please sign in to comment.