summaryrefslogtreecommitdiff
path: root/wrapper/rvs.c
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2009-09-13 00:33:03 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-06-26 00:30:15 -0600
commit3f829bcc56a0dff2ba4ed6e1a1c081b6262fbed9 (patch)
tree469b62ba0d4b73650a1c4e8e5b51e1a8f54f27b0 /wrapper/rvs.c
parentdbd499c654ffc8f1195fc03bd06680045bc0e306 (diff)
everything that is coded in the wrapper works
Diffstat (limited to 'wrapper/rvs.c')
-rw-r--r--wrapper/rvs.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/wrapper/rvs.c b/wrapper/rvs.c
index 50343e4..4f2fa1b 100644
--- a/wrapper/rvs.c
+++ b/wrapper/rvs.c
@@ -20,7 +20,6 @@ const char *ver="0.8c";
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#define DEBUG
#include "rvs.h"
#include "plugins.h"
#include "plugin-load.h"
@@ -37,8 +36,10 @@ main ( int argc, char *argv[] )
if (argc > 1) {
struct plugin_command_list *list;
list=plugin_find_commands(plugins,argv[1]);
- plugin_depend_list(list,plugins);
+ struct plugin_command *root;
+ root=plugin_depend_list(list,plugins);
plugin_free_list(list);
+ plugin_free_command(root);
}
plugin_free_plugin(plugins);
return 0;