- Timestamp:
- 2016-11-20T08:40:36Z (8 years ago)
- Children:
- 3f44e43
- Parents:
- ba52ac5 (diff), 9f03c47 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage.c
rba52ac5 r537d9b9 29 29 #include "bitlbee.h" 30 30 31 extern storage_t storage_text;32 31 extern storage_t storage_xml; 33 32 … … 92 91 } 93 92 94 storage_status_t storage_check_pass( const char *nick, const char *password)93 storage_status_t storage_check_pass(irc_t *irc, const char *nick, const char *password) 95 94 { 96 95 GList *gl; … … 102 101 storage_status_t status; 103 102 104 status = st->check_pass( nick, password);103 status = st->check_pass(irc, nick, password); 105 104 if (status != STORAGE_NO_SUCH_USER) { 106 105 return status; … … 176 175 } 177 176 178 storage_status_t storage_remove(const char *nick , const char *password)177 storage_status_t storage_remove(const char *nick) 179 178 { 180 179 GList *gl; … … 190 189 storage_status_t status; 191 190 192 status = st->remove(nick , password);191 status = st->remove(nick); 193 192 ok |= status == STORAGE_OK; 194 193 if (status != STORAGE_NO_SUCH_USER && status != STORAGE_OK) {
Note: See TracChangeset
for help on using the changeset viewer.