subscriptions: Remove unused function

Signed-off-by: Otavio Pontes <otavio.pontes@intel.com>
This commit is contained in:
Otavio Pontes
2019-10-25 09:25:03 -07:00
parent 96061a06d7
commit 3e5b2db9ab
2 changed files with 0 additions and 6 deletions
-5
View File
@@ -48,11 +48,6 @@ void free_subscriptions(struct list **subs)
*subs = NULL;
}
struct list *free_bundle(struct list *item)
{
return list_free_item(item, free_subscription_data);
}
struct list *free_list_file(struct list *item)
{
return list_free_item(item, free_file_data);
-1
View File
@@ -319,7 +319,6 @@ extern int create_state_dirs(const char *state_dir_path);
/* subscription.c */
struct list *free_list_file(struct list *item);
struct list *free_bundle(struct list *item);
extern void create_and_append_subscription(struct list **subs, const char *component);
extern char *get_tracking_dir(void);
extern int add_subscriptions(struct list *bundles, struct list **subs, struct manifest *mom, bool find_all, int recursion);