mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-24 19:33:38 -04:00
[MINOR] Fix build error in stream_int_register_handler()
There is no parameter or variable fct in stream_int_register_handler() so the build fails when DPRINTF is active.
This commit is contained in:
parent
64b28d0727
commit
7abd00d7eb
1 changed files with 1 additions and 1 deletions
|
|
@ -306,7 +306,7 @@ void stream_int_chk_snd(struct stream_interface *si)
|
|||
*/
|
||||
struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
|
||||
{
|
||||
DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", fct, si, si->owner);
|
||||
DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
|
||||
|
||||
si->update = stream_int_update_embedded;
|
||||
si->shutr = stream_int_shutr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue