Module: sip-router Branch: master Commit: 4c7195915b38ba343484833532b82b42879d7138 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4c7195915b38ba343484833532b82b42879d7138
Author: Peter Dunkley <[email protected]> Committer: Peter Dunkley <[email protected]> Date: Thu Apr 25 16:13:48 2013 +0100 modules/websocket: fixed segmentation fault relating to recent counter changes --- modules/websocket/ws_mod.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/modules/websocket/ws_mod.c b/modules/websocket/ws_mod.c index 4159a47..74f70a8 100644 --- a/modules/websocket/ws_mod.c +++ b/modules/websocket/ws_mod.c @@ -93,7 +93,7 @@ static stat_export_t stats[] = { "ws_sip_current_connections", 0, &ws_sip_current_connections }, { "ws_sip_max_concurrent_connectons", 0, &ws_sip_max_concurrent_connections }, { "ws_msrp_current_connections", 0, &ws_msrp_current_connections }, - { "ws_msrp_max_concurrent_connectons", 0, &ws_sip_max_concurrent_connections }, + { "ws_msrp_max_concurrent_connectons", 0, &ws_msrp_max_concurrent_connections }, /* ws_frame.c */ { "ws_failed_connections", 0, &ws_failed_connections }, _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
