commit linuxrc for openSUSE:Factory
Hello community, here is the log from the commit of package linuxrc for openSUSE:Factory checked in at 2015-04-06 00:24:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/linuxrc (Old) and /work/SRC/openSUSE:Factory/.linuxrc.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "linuxrc" Changes: -------- --- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes 2015-03-23 12:14:48.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.linuxrc.new/linuxrc.changes 2015-04-06 00:24:16.000000000 +0200 @@ -1,0 +2,6 @@ +Thu Apr 2 10:51:21 CEST 2015 - snwint@suse.com + +- match mac addresses case-insensitive (bnc #924872) +- 5.0.35 + +------------------------------------------------------------------- Old: ---- linuxrc-5.0.34.tar.xz New: ---- linuxrc-5.0.35.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ linuxrc.spec ++++++ --- /var/tmp/diff_new_pack.ImPEWe/_old 2015-04-06 00:24:16.000000000 +0200 +++ /var/tmp/diff_new_pack.ImPEWe/_new 2015-04-06 00:24:16.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package linuxrc # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,7 +25,7 @@ Summary: SUSE Installation Program License: GPL-3.0+ Group: System/Boot -Version: 5.0.34 +Version: 5.0.35 Release: 0 Source: %{name}-%{version}.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ linuxrc-5.0.34.tar.xz -> linuxrc-5.0.35.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.34/VERSION new/linuxrc-5.0.35/VERSION --- old/linuxrc-5.0.34/VERSION 2015-03-18 16:32:48.000000000 +0100 +++ new/linuxrc-5.0.35/VERSION 2015-04-02 10:50:02.000000000 +0200 @@ -1 +1 @@ -5.0.34 +5.0.35 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.34/changelog new/linuxrc-5.0.35/changelog --- old/linuxrc-5.0.34/changelog 2015-03-18 16:32:48.000000000 +0100 +++ new/linuxrc-5.0.35/changelog 2015-04-02 10:50:02.000000000 +0200 @@ -1,3 +1,6 @@ +2015-04-02: 5.0.35 + - match mac addresses case-insensitive (bnc #924872) + 2015-03-18: 5.0.34 - update copyright string - verify also rpm signatures diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.34/net.c new/linuxrc-5.0.35/net.c --- old/linuxrc-5.0.34/net.c 2015-03-18 16:32:48.000000000 +0100 +++ new/linuxrc-5.0.35/net.c 2015-04-02 10:50:02.000000000 +0200 @@ -1665,7 +1665,7 @@ for(sl = config.ethtool; sl; sl = sl->next) { if( (device && !fnmatch(sl->key, device, 0)) || - (hwaddr && !fnmatch(sl->key, hwaddr, 0)) + (hwaddr && !fnmatch(sl->key, hwaddr, FNM_CASEFOLD)) ) { if(s) { strprintf(&s, "%s %s", s, sl->value); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.34/util.c new/linuxrc-5.0.35/util.c --- old/linuxrc-5.0.34/util.c 2015-03-18 16:32:48.000000000 +0100 +++ new/linuxrc-5.0.35/util.c 2015-04-02 10:50:02.000000000 +0200 @@ -3664,7 +3664,7 @@ if( (device && !fnmatch(key, device, 0)) || - (hwaddr && !fnmatch(key, hwaddr, 0)) + (hwaddr && !fnmatch(key, hwaddr, FNM_CASEFOLD)) ) return 1; return 0;
participants (1)
-
root@hilbert.suse.de