Update of /cvsroot/dhcp-agent/dhcp-agent
In directory usw-pr-cvs1:/tmp/cvs-serv12503a
Modified Files:
dhcp-agent.h dhcp-list.c
Log Message:
i need more coffee
Index: dhcp-agent.h
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/dhcp-agent.h,v
retrieving revision 1.74
retrieving revision 1.75
diff -C2 -d -r1.74 -r1.75
*** dhcp-agent.h 25 Oct 2002 12:58:20 -0000 1.74
--- dhcp-agent.h 25 Oct 2002 13:20:08 -0000 1.75
***************
*** 788,792 ****
extern void purge_list_internal(void *head);
extern list_t *join_lists(list_t *first_list, list_t *second_list);
! extern list_t *find_datum_by(list_t *first, int (*find_func(void *, void *)), void *arg);
/* Logging functions. */
--- 788,792 ----
extern void purge_list_internal(void *head);
extern list_t *join_lists(list_t *first_list, list_t *second_list);
! extern list_t *list_find_datum_by(list_t *list, int (*find_func)(void *, void *), void *arg);
/* Logging functions. */
Index: dhcp-list.c
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/dhcp-list.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** dhcp-list.c 25 Oct 2002 12:58:20 -0000 1.7
--- dhcp-list.c 25 Oct 2002 13:20:08 -0000 1.8
***************
*** 127,131 ****
}
! list_t *find_datum_by(list_t *list, int (*find_func(void *, void *)), void *arg)
{
list_t *ptr;
--- 127,131 ----
}
! list_t *list_find_datum_by(list_t *list, int (*find_func)(void *, void *), void *arg)
{
list_t *ptr;
|