From f3e65b086db60b59af78500d10ebcf890908d849 Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Sun, 2 Dec 2018 00:35:08 +0100 Subject: [PATCH] MINOR: connection: Fix a comment. Connections can now have an owner for outgoing connections, so update the comment tu reflect that. --- include/types/connection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/types/connection.h b/include/types/connection.h index 0d7bba28e0..6d4680a6d9 100644 --- a/include/types/connection.h +++ b/include/types/connection.h @@ -422,7 +422,7 @@ struct connection { const struct mux_ops *mux; /* mux layer opreations. Must be set before xprt->init() */ void *xprt_ctx; /* general purpose pointer, initialized to NULL */ void *mux_ctx; /* mux-specific context, initialized to NULL */ - void *owner; /* pointer to the owner session for incoming connections, or NULL */ + void *owner; /* pointer to the owner session, or NULL */ enum obj_type *target; /* the target to connect to (server, proxy, applet, ...) */ /* second cache line */