gnokii-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-34


From: Pawel Kot
Subject: [SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-349-ga4192c4
Date: Mon, 26 Dec 2011 19:14:44 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libgnokii and core programs".

The branch, master has been updated
       via  a4192c40a2bee9dbc60b461761e958dccfdca1b4 (commit)
      from  6248e1d564cb1f528fc963301534136f7f190b50 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=a4192c40a2bee9dbc60b461761e958dccfdca1b4


commit a4192c40a2bee9dbc60b461761e958dccfdca1b4
Author: Pawel Kot <address@hidden>
Date:   Mon Dec 26 20:14:22 2011 +0100

    Fix incorrect condition logic.

diff --git a/common/gsm-auth.c b/common/gsm-auth.c
index f0c3d89..43fdf92 100644
--- a/common/gsm-auth.c
+++ b/common/gsm-auth.c
@@ -148,7 +148,7 @@ static gn_error auth_pin(gn_auth_type auth_type, struct 
gn_statemachine *state)
         * inserted (we cannot distinguish here between these three
         * situations), gnokii is still usable.
         */
-       if (err != GN_ERR_NONE || err == GN_ERR_SIMPROBLEM) {
+       if (err == GN_ERR_NONE || err == GN_ERR_SIMPROBLEM) {
                err = GN_ERR_NONE;
                goto out;
        }

-----------------------------------------------------------------------

Summary of changes:
 common/gsm-auth.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
libgnokii and core programs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]