MINOR: connection: Fix a comment.

Connections can now have an owner for outgoing connections, so update
the comment tu reflect that.
This commit is contained in:
Olivier Houchard 2018-12-02 00:35:08 +01:00 committed by Willy Tarreau
parent d92ae75a90
commit f3e65b086d
1 changed files with 1 additions and 1 deletions

View File

@ -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 */