diff options
| author | Aleksey Veresov <aleksey@veresov.pro> | 2019-11-30 18:54:03 +0300 | 
|---|---|---|
| committer | Aleksey Veresov <aleksey@veresov.pro> | 2019-11-30 18:54:03 +0300 | 
| commit | 727eaf02d93e2ca7f1752d1dfcdba9fa83e83c5b (patch) | |
| tree | 1df6428e0b520b46125a038afc38a3e363ef536d | |
| parent | 59224e484253b32432743248672d8d8ba69f110b (diff) | |
| download | magi-727eaf02d93e2ca7f1752d1dfcdba9fa83e83c5b.tar magi-727eaf02d93e2ca7f1752d1dfcdba9fa83e83c5b.tar.xz magi-727eaf02d93e2ca7f1752d1dfcdba9fa83e83c5b.zip  | |
[magi] fix
| -rw-r--r-- | src/cookie.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cookie.h b/src/cookie.h index 764eb53..0430226 100644 --- a/src/cookie.h +++ b/src/cookie.h @@ -21,7 +21,7 @@ struct magi_cookie_list {  int magi_cookie_list_add(struct magi_cookie_list ** list,                           struct magi_cookie *       item); -/* First node in list: node.name == name; else null. */ +/* Data of the first node in list: node.name == name; else null. */  char * magi_cookie_list_get(struct magi_cookie_list * list, const char * name);  /* Freeing and invalidation of list. */  | 
