1
1

correct the comment for _libssh2_list_add()

it adds the new node to the _end_ of the list
Этот коммит содержится в:
Daniel Stenberg 2009-08-19 13:38:51 +02:00
родитель 28b179ecf2
Коммит 46178378f2

Просмотреть файл

@ -42,7 +42,7 @@
void _libssh2_list_init(struct list_head *head); void _libssh2_list_init(struct list_head *head);
/* add a node first in the list */ /* add a node last in the list */
void _libssh2_list_add(struct list_head *head, void _libssh2_list_add(struct list_head *head,
struct list_node *entry); struct list_node *entry);