From: Jennifer Richards Date: Thu, 12 Apr 2018 20:27:15 +0000 (-0400) Subject: Fix accidentally changed variable name in function prototype X-Git-Tag: 3.4.0~1^2~49^2~7 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=trust_router.git;a=commitdiff_plain;h=d253bd9f9c36c1555d02bbfe25eefe6b25ef957e Fix accidentally changed variable name in function prototype --- diff --git a/include/trust_router/tid.h b/include/trust_router/tid.h index cca0834..f442af5 100644 --- a/include/trust_router/tid.h +++ b/include/trust_router/tid.h @@ -159,7 +159,7 @@ TR_EXPORT int tids_start (TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler, TR_EXPORT int tids_get_listener (TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler, tids_auth_func *auth_handler, const char *hostname, unsigned int port, void *cookie, int *fd_out, size_t max_fd); -TR_EXPORT int tids_accept(TIDS_INSTANCE *mons, int listen); +TR_EXPORT int tids_accept(TIDS_INSTANCE *tids, int listen); TR_EXPORT int tids_send_response (TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp); TR_EXPORT int tids_send_err_response (TIDS_INSTANCE *tids, TID_REQ *req, const char *err_msg); TR_EXPORT void tids_destroy (TIDS_INSTANCE *tids);