From 936dc943512289a2692aa12ff666f6dd06b00d86 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Tue, 18 Sep 2007 12:04:51 +0000 Subject: API change! rc_ls_dir, rc_get_config and rc_get_list no longer take a starting list as a first argument. Instead, use rc_strlist_join to append or prepend the new list to an existing list. --- src/rc-plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rc-plugin.c') diff --git a/src/rc-plugin.c b/src/rc-plugin.c index 1103e469..5e74fb73 100644 --- a/src/rc-plugin.c +++ b/src/rc-plugin.c @@ -62,7 +62,7 @@ void rc_plugin_load (void) if (! rc_exists (RC_PLUGINDIR)) return; - files = rc_ls_dir (NULL, RC_PLUGINDIR, 0); + files = rc_ls_dir (RC_PLUGINDIR, 0); STRLIST_FOREACH (files, file, i) { char *p = rc_strcatpaths (RC_PLUGINDIR, file, NULL); void *h = dlopen (p, RTLD_LAZY); -- cgit v1.2.3