Changeset 537d9b9 for storage.c


Ignore:
Timestamp:
2016-11-20T08:40:36Z (8 years ago)
Author:
dequis <dx@…>
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.
Message:

Merge master up to commit '9f03c47' into parson

File:
1 edited

Legend:

Unmodified
Added
Removed
  • storage.c

    rba52ac5 r537d9b9  
    2929#include "bitlbee.h"
    3030
    31 extern storage_t storage_text;
    3231extern storage_t storage_xml;
    3332
     
    9291}
    9392
    94 storage_status_t storage_check_pass(const char *nick, const char *password)
     93storage_status_t storage_check_pass(irc_t *irc, const char *nick, const char *password)
    9594{
    9695        GList *gl;
     
    102101                storage_status_t status;
    103102
    104                 status = st->check_pass(nick, password);
     103                status = st->check_pass(irc, nick, password);
    105104                if (status != STORAGE_NO_SUCH_USER) {
    106105                        return status;
     
    176175}
    177176
    178 storage_status_t storage_remove(const char *nick, const char *password)
     177storage_status_t storage_remove(const char *nick)
    179178{
    180179        GList *gl;
     
    190189                storage_status_t status;
    191190
    192                 status = st->remove(nick, password);
     191                status = st->remove(nick);
    193192                ok |= status == STORAGE_OK;
    194193                if (status != STORAGE_NO_SUCH_USER && status != STORAGE_OK) {
Note: See TracChangeset for help on using the changeset viewer.