1
0
mirror of https://github.com/lxsang/ant-http synced 2024-06-26 18:39:48 +02:00

fix cookie error

This commit is contained in:
root 2016-11-01 02:57:40 +00:00
parent 355bda010d
commit 6b4d249cb1
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
# Prerequisites
*._*
*.d
# Object files

View File

@ -140,6 +140,7 @@ dictionary decode_cookie(const char* line)
if(dic == NULL)
dic = dict();
LOG("Found cookie : %s = %s\n",token1,token);
trim(token1,' ');
dput(dic,token1,token);
}
}