mirror of
				https://github.com/libssh2/libssh2.git
				synced 2025-11-03 22:13:11 +03:00 
			
		
		
		
	correct the comment for _libssh2_list_add()
it adds the new node to the _end_ of the list
This commit is contained in:
		@@ -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);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user