diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-07-15 13:24:26 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-07-15 13:24:26 +0100 |
commit | 137aa31e95d586a6739bbba9c2ea82debb6a5c43 (patch) | |
tree | 1df522ce916d255fd29a5cee53978cd1e59b7b65 | |
parent | c965a0e619c6343b76b83276ba46a7fe1e9552ad (diff) |
olm_account_last_error and olm_clear_account should take an Account not a Session
-rw-r--r-- | include/olm/olm.hh | 4 | ||||
-rw-r--r-- | src/olm.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/olm/olm.hh b/include/olm/olm.hh index 6b102d2..64454e6 100644 --- a/include/olm/olm.hh +++ b/include/olm/olm.hh @@ -52,7 +52,7 @@ size_t olm_error(); /** A null terminated string describing the most recent error to happen to an * account */ const char * olm_account_last_error( - OlmSession * account + OlmAccount * account ); /** A null terminated string describing the most recent error to happen to a @@ -63,7 +63,7 @@ const char * olm_session_last_error( /** Clears the memory used to back this account */ size_t olm_clear_account( - OlmSession * account + OlmAccount * account ); /** Clears the memory used to back this session */ diff --git a/src/olm.cpp b/src/olm.cpp index 53cae54..b121ec7 100644 --- a/src/olm.cpp +++ b/src/olm.cpp @@ -178,7 +178,7 @@ size_t olm_error() { const char * olm_account_last_error( - OlmSession * account + OlmAccount * account ) { unsigned error = unsigned(from_c(account)->last_error); if (error < sizeof(ERRORS)) { @@ -228,7 +228,7 @@ OlmSession * olm_session( size_t olm_clear_account( - OlmSession * account + OlmAccount * account ) { /* Clear the memory backing the account */ olm::unset(account, sizeof(olm::Account)); |