summaryrefslogtreecommitdiff
path: root/misc/amanda26-server/files/patch-common-src_conffile.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:38:59 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:38:59 +0000
commitbeced671bdcb6ffe50e652d814ac803ba36386d8 (patch)
tree88eb9dbb4fc80b7d159c64e16db129bdd9b80aed /misc/amanda26-server/files/patch-common-src_conffile.c
parentAdd the current SUSv4/Open Group Base Specifications Issue 7. (diff)
Remove non staged ports without pending PR from m*
Notes
Notes: svn path=/head/; revision=366962
Diffstat (limited to 'misc/amanda26-server/files/patch-common-src_conffile.c')
-rw-r--r--misc/amanda26-server/files/patch-common-src_conffile.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/misc/amanda26-server/files/patch-common-src_conffile.c b/misc/amanda26-server/files/patch-common-src_conffile.c
deleted file mode 100644
index 1503c7f5c67e..000000000000
--- a/misc/amanda26-server/files/patch-common-src_conffile.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- common-src/conffile.c.orig 2011-06-25 22:48:30.000000000 +0200
-+++ common-src/conffile.c 2011-06-25 22:58:42.000000000 +0200
-@@ -4151,7 +4151,7 @@
- amfree(config_name);
- amfree(config_dir);
-
-- g_slist_free_full(seen_filenames);
-+ _slist_free_full(seen_filenames, g_free);
- seen_filenames = NULL;
-
- config_client = FALSE;
-@@ -5655,7 +5655,7 @@
- break;
-
- case CONFTYPE_PP_SCRIPTLIST:
-- g_slist_free_full(val->v.pp_scriptlist);
-+ _slist_free_full(val->v.pp_scriptlist, g_free);
- break;
-
- case CONFTYPE_APPLICATION:
-@@ -6771,7 +6771,7 @@
- void
- config_clear_errors(void)
- {
-- g_slist_free_full(cfgerr_errors);
-+ _slist_free_full(cfgerr_errors, g_free);
-
- cfgerr_errors = NULL;
- cfgerr_level = CFGERR_OK;