[SCM] GNU gnutls branch, master, updated. gnutls-3_0_12-50-g6020e0f

"Nikos Mavrogiannopoulos" <[email protected]>
Newsgroups gmane.comp.encryption.gpg.gnutls.cvs
Message-ID <[email protected]>
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 "GNU gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=6020e0f35ac4de1e4459356a339cf7890dfeaf0b

The branch, master has been updated
       via  6020e0f35ac4de1e4459356a339cf7890dfeaf0b (commit)
      from  5ff4a69a32cf4b21b39d5f2d91f7381fd424783c (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 -----------------------------------------------------------------
commit 6020e0f35ac4de1e4459356a339cf7890dfeaf0b
Author: Nikos Mavrogiannopoulos <[email protected]>
Date:   Mon Jan 23 09:31:53 2012 +0100

    READ_MULTI_LINE_TOKENIZED was corrected to account the whole string.

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

Summary of changes:
 src/certtool-cfg.c |   23 +++++++++++++++--------
 1 files changed, 15 insertions(+), 8 deletions(-)

diff --git a/src/certtool-cfg.c b/src/certtool-cfg.c
index 353cd0f..0dfbfbc 100644
--- a/src/certtool-cfg.c
+++ b/src/certtool-cfg.c
@@ -122,19 +122,26 @@ cfg_init (void)
   val = optionGetValue(pov, name); \
   if (val != NULL && val->valType == OPARG_TYPE_STRING) \
   { \
-    token_list_t* res; \
+    char str[512]; \
+    char * p; \
+    int j; \
     if (s_name == NULL) { \
       i = 0; \
       s_name = malloc(sizeof(char*)*MAX_ENTRIES); \
       do { \
         if (val && !strcmp(val->pzName, name)==0) \
           continue; \
-        res = ao_string_tokenize( val->v.strVal); \
-        if (res != NULL && res->tkn_ct > 1) \
-          { \
-            s_name[i] = strdup(res->tkn_list[0]); \
-            s_name[i+1] = strdup(res->tkn_list[1]); \
-          } \
+        strncpy(str, val->v.strVal, sizeof(str)-1); \
+        str[sizeof(str)-1] = 0; \
+        if ((p=strchr(str, ' ')) == NULL && (p=strchr(str, '\t')) == NULL) { \
+          fprintf(stderr, "Error parsing %s\n", name); \
+          exit(1); \
+        } \
+        p[0] = 0; \
+        s_name[i] = strdup(str); \
+        j = 0; \
+        while(p[j]==' ' || p[j] == '\t') j++; \
+        s_name[i+1] = strdup(p+1); \
         i+=2; \
         if (i>=MAX_ENTRIES) \
           break; \
@@ -221,9 +228,9 @@ template_parse (const char *template)
   READ_MULTI_LINE("dns_name", cfg.dns_name);
   READ_MULTI_LINE("ip_address", cfg.ip_addr);
   READ_MULTI_LINE("email", cfg.email);
+  READ_MULTI_LINE("key_purpose_oid", cfg.key_purpose_oids);
   
   READ_MULTI_LINE_TOKENIZED("dn_oid", cfg.dn_oid);
-  READ_MULTI_LINE_TOKENIZED("key_purpose_oids", cfg.key_purpose_oids);
 
   val = optionGetValue(pov, "crl_dist_points");
   if (val != NULL && val->valType == OPARG_TYPE_STRING)


hooks/post-receive
-- 
GNU gnutls
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.