]> git.sur5r.net Git - bacula/bacula/commitdiff
rename plugin->len to plugin->file_len
authorEric Bollengier <eric@eb.homelinux.org>
Wed, 24 Nov 2010 09:03:54 +0000 (10:03 +0100)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 25 Nov 2010 14:09:59 +0000 (15:09 +0100)
bacula/src/filed/fd_plugins.c
bacula/src/lib/plugins.c
bacula/src/lib/plugins.h

index e02f023f80152d74eca93614b7de1c40b0c6776e..6d3ef3c7f5b18f0fdee8ea3b96a252c88ef5909a 100644 (file)
@@ -87,7 +87,7 @@ static ssize_t my_plugin_bread(BFILE *bfd, void *buf, size_t count);
 static ssize_t my_plugin_bwrite(BFILE *bfd, void *buf, size_t count);
 static boffset_t my_plugin_blseek(BFILE *bfd, boffset_t offset, int whence);
 
-#define for_this_plug(plugin, str, len) (((len) == (plugin)->len) && strncmp((plugin)->file, str, len) == 0)
+#define for_this_plug(plugin, str, len) (((len) == (plugin)->file_len) && strncmp((plugin)->file, str, len) == 0)
 
 /* Bacula info */
 static bInfo binfo = {
@@ -328,7 +328,7 @@ int plugin_save(JCR *jcr, FF_PKT *ff_pkt, bool top_level)
 
    /* Note, we stop the loop on the first plugin that matches the name */
    foreach_alist(plugin, plugin_list) {
-      Dmsg4(0, "plugin=%s plen=%d cmd=%s len=%d\n", plugin->file, plugin->len, cmd, len);
+      Dmsg4(0, "plugin=%s plen=%d cmd=%s len=%d\n", plugin->file, plugin->file_len, cmd, len);
       if (!for_this_plug(plugin, cmd, len)) {
          i++;
          continue;
index 5003c5d450853fb0bc85e6ece539c16b9d679bde..35a0abf3679ebe4d0edf491576cb3e0145d2fedd 100644 (file)
@@ -155,7 +155,7 @@ bool load_plugins(void *binfo, void *bfuncs, const char *plugin_dir,
 
       plugin = new_plugin();
       plugin->file = bstrdup(result->d_name);
-      plugin->len = strstr(plugin->file, type) - plugin->file;
+      plugin->file_len = strstr(plugin->file, type) - plugin->file;
       plugin->pHandle = dlopen(fname.c_str(), RTLD_NOW);
       if (!plugin->pHandle) {
          Jmsg(NULL, M_ERROR, 0, _("Plugin load %s failed: ERR=%s\n"), 
index 7c10a1f99e7d04973368834246efd2dbd70f7d60..c3d015357b3c24ff3bfc6dbd0cc9cbf999b3fb9e 100644 (file)
@@ -71,7 +71,7 @@ typedef bRC (*t_unloadPlugin)(void);
 class Plugin {
 public:
    char *file;
-   int32_t len;
+   int32_t file_len;
    t_unloadPlugin unloadPlugin;
    void *pinfo;
    void *pfuncs;