- Timestamp:
- 2016-03-25T18:07:53Z (9 years ago)
- Branches:
- master
- Children:
- a6005da
- Parents:
- 446a23e
- git-author:
- Dennis Kaarsemaker <dennis@…> (23-02-16 18:41:34)
- git-committer:
- Dennis Kaarsemaker <dennis@…> (25-03-16 18:07:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage.c
r446a23e r8e6ecfe 87 87 } 88 88 89 storage_status_t storage_check_pass( const char *nick, const char *password)89 storage_status_t storage_check_pass(irc_t *irc, const char *nick, const char *password) 90 90 { 91 91 GList *gl; … … 97 97 storage_status_t status; 98 98 99 status = st->check_pass( nick, password);99 status = st->check_pass(irc, nick, password); 100 100 if (status != STORAGE_NO_SUCH_USER) { 101 101 return status; … … 171 171 } 172 172 173 storage_status_t storage_remove(const char *nick , const char *password)173 storage_status_t storage_remove(const char *nick) 174 174 { 175 175 GList *gl; … … 185 185 storage_status_t status; 186 186 187 status = st->remove(nick , password);187 status = st->remove(nick); 188 188 ok |= status == STORAGE_OK; 189 189 if (status != STORAGE_NO_SUCH_USER && status != STORAGE_OK) {
Note: See TracChangeset
for help on using the changeset viewer.