* Fixed: [comma in yang list name will lead to cli setting error #186](https://github.com/clicon/clixon/issues/186)
This commit is contained in:
parent
a8d29b1e7e
commit
608f298ed9
11 changed files with 94 additions and 48 deletions
|
|
@ -214,7 +214,7 @@ get_user_cookie(char *cookiestr,
|
|||
cvec *cvv = NULL;
|
||||
char *c;
|
||||
|
||||
if (str2cvec(cookiestr, ';', '=', &cvv) < 0)
|
||||
if (uri_str2cvec(cookiestr, ';', '=', 1, &cvv) < 0)
|
||||
goto done;
|
||||
if ((c = cvec_find_str(cvv, attribute)) != NULL){
|
||||
if ((*val = strdup(c)) == NULL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue