Changed some "register" methods to the proper "unregister" method. This is in a #if 0 block, but it may still be useful someday.

Thanks eliel.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15319 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
North Antara 19 years ago
parent a5ece3388a
commit e9cf7dbfff

@ -3349,12 +3349,12 @@ int unload_module()
return -1;
}
ast_rtp_proto_register(&skinny_rtp);
ast_rtp_proto_unregister(&skinny_rtp);
ast_channel_unregister(&skinny_tech);
ast_cli_register(&cli_show_devices);
ast_cli_register(&cli_show_lines);
ast_cli_register(&cli_debug);
ast_cli_register(&cli_no_debug);
ast_cli_unregister(&cli_show_devices);
ast_cli_unregister(&cli_show_lines);
ast_cli_unregister(&cli_debug);
ast_cli_unregister(&cli_no_debug);
return 0;
#endif

Loading…
Cancel
Save