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
This commit is contained in:
North Antara 2006-03-27 21:13:54 +00:00
parent a5ece3388a
commit e9cf7dbfff
1 changed files with 5 additions and 5 deletions

View File

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