]> git.sur5r.net Git - bacula/bacula/commitdiff
Remove exporting add_mtab_item -- fixes bug #2198
authorKern Sibbald <kern@sibbald.com>
Sun, 31 Jan 2016 21:09:30 +0000 (13:09 -0800)
committerKern Sibbald <kern@sibbald.com>
Sun, 31 Jan 2016 21:09:30 +0000 (13:09 -0800)
bacula/src/findlib/fstype.c
bacula/src/tools/fstype.c

index ab3b20616e0a0b8d095c50b886bff1b370c38cd7..4fc4f2669bcfd3ac2dedf8fcf4dbe6d273138a1c 100644 (file)
@@ -67,9 +67,9 @@ static int compare_mtab_items(void *item1, void *item2)
    return 0;
 }
 
-void add_mtab_item(void *user_ctx, struct stat *st, const char *fstype,
-                      const char *mountpoint, const char *mntopts,
-                      const char *fsname)
+static void add_mtab_item(void *user_ctx, struct stat *st, const char *fstype,
+               const char *mountpoint, const char *mntopts,
+               const char *fsname)
 {
    rblist *mtab_list = (rblist *)user_ctx;
    mtab_item *item, *ritem;
index d61e0f28b828c1a57d3b96949240ad0027f59b44..f8240a7c252376b1ca75197a491384fde13fca28 100644 (file)
@@ -68,9 +68,9 @@ void print_mtab_item(void *user_ctx, struct stat *st, const char *fstype,
       ((void *)st->st_dev), fstype, mountpoint, mntopts);
 }
 
-void add_mtab_item(void *user_ctx, struct stat *st, const char *fstype,
-                      const char *mountpoint, const char *mntopts,
-                      const char *fsname)
+static void add_mtab_item(void *user_ctx, struct stat *st, const char *fstype,
+               const char *mountpoint, const char *mntopts,
+               const char *fsname)
 {
    rblist *mtab_list = (rblist *)user_ctx;
    mtab_item *item, *ritem;