]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak fix compile error on older FreeBSDs
authorKern Sibbald <kern@sibbald.com>
Mon, 23 Jan 2012 17:25:23 +0000 (18:25 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:29 +0000 (14:50 +0200)
bacula/src/lib/plugins.c

index 59aad3cdc9dcd5bdde99c6da97935490caee3ab3..0b42f905366d7704ff02a31752cd7164f304c4fd 100644 (file)
@@ -159,7 +159,7 @@ bool load_plugins(void *binfo, void *bfuncs, const char *plugin_dir,
       plugin->file_len = strstr(plugin->file, type) - plugin->file;
       plugin->pHandle = dlopen(fname.c_str(), RTLD_NOW);
       if (!plugin->pHandle) {
-         char *error = dlerror();
+         char *error = (char *)dlerror();
          Jmsg(NULL, M_ERROR, 0, _("dlopen plugin %s failed: ERR=%s\n"), 
               fname.c_str(), NPRT(error));
          Dmsg2(dbglvl, "dlopen plugin %s failed: ERR=%s\n", fname.c_str(),