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-27


From: Daniele Forsi
Subject: [SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-277-ga3e1670
Date: Sun, 10 Jul 2011 15:07:15 +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  a3e1670666cda7f091af38f2a7bd13cf6d3a900d (commit)
      from  86a6c29833bfb6eecdc12a777fb68e799db7892c (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=a3e1670666cda7f091af38f2a7bd13cf6d3a900d


commit a3e1670666cda7f091af38f2a7bd13cf6d3a900d
Author: Daniele Forsi <address@hidden>
Date:   Sun Jul 10 17:06:01 2011 +0200

    Continue searching from the last found address
    
    Like the code above this, do not restart from beginning of string.

diff --git a/common/vcard.c b/common/vcard.c
index 5a521ee..07fb0f6 100644
--- a/common/vcard.c
+++ b/common/vcard.c
@@ -398,7 +398,7 @@ GNOKII_API int gn_vcardstr2phonebook(const char *vcard, 
gn_phonebook_entry *entr
        fold = strstr(v, "\n\t");
        while (fold != NULL) {
                memmove(fold, fold + 2, strlen(fold) - 1);
-               fold = strstr(v, "\n\t");
+               fold = strstr(fold, "\n\t");
        }
 
        /* Count the number of lines */

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

Summary of changes:
 common/vcard.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]