commit netcontrol for openSUSE:Factory
Hello community, here is the log from the commit of package netcontrol for openSUSE:Factory checked in at 2014-05-09 08:51:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/netcontrol (Old) and /work/SRC/openSUSE:Factory/.netcontrol.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "netcontrol" Changes: -------- --- /work/SRC/openSUSE:Factory/netcontrol/netcontrol.changes 2014-01-13 12:03:23.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.netcontrol.new/netcontrol.changes 2014-05-09 08:51:53.000000000 +0200 @@ -1,0 +2,6 @@ +Tue May 6 11:58:04 UTC 2014 - mt@suse.de + +- blacklist ifcfg files ending in .orig or tilde (bnc#871600) + [+0001-blacklist-ifcfg-files-ending-in-.orig-or-tilde-bnc-8.patch] + +------------------------------------------------------------------- New: ---- 0001-blacklist-ifcfg-files-ending-in-.orig-or-tilde-bnc-8.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ netcontrol.spec ++++++ --- /var/tmp/diff_new_pack.oHRBTX/_old 2014-05-09 08:51:54.000000000 +0200 +++ /var/tmp/diff_new_pack.oHRBTX/_new 2014-05-09 08:51:54.000000000 +0200 @@ -50,6 +50,7 @@ %else Requires: sysconfig >= 0.71.0 %endif +Patch1: 0001-blacklist-ifcfg-files-ending-in-.orig-or-tilde-bnc-8.patch %description A interim network configuration library, currently implementing the @@ -102,6 +103,7 @@ %prep %setup -q +%patch1 -p1 %build export CFLAGS="-W -Wall $RPM_OPT_FLAGS" ++++++ 0001-blacklist-ifcfg-files-ending-in-.orig-or-tilde-bnc-8.patch ++++++
From 292d93f5f3cbb9d343b75fb4fc570140004d93f5 Mon Sep 17 00:00:00 2001 From: Marius Tomaschewski <mt@suse.de> Date: Tue, 6 May 2014 14:13:21 +0200 Subject: [PATCH] blacklist ifcfg files ending in .orig or tilde (bnc#871600) Upstream: yes References: bnc#871600
--- src/backend-suse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend-suse.c b/src/backend-suse.c index dff529a..0aed475 100644 --- a/src/backend-suse.c +++ b/src/backend-suse.c @@ -803,7 +803,7 @@ static int __suse_ifcfg_valid_name(const char *name) { const char *bl_suffix[] = { - ".old", ".bak", ".scpmbackup", + "~", ".old", ".bak", ".orig", ".scpmbackup", ".rpmnew", ".rpmsave", ".rpmorig" }; size_t nlen, slen, n; -- 1.8.4.5 -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de