Hello community, here is the log from the commit of package zmd-inventory checked in at Tue Feb 27 08:47:48 CET 2007. -------- --- zmd-inventory/zmd-inventory.changes 2007-02-21 05:17:40.000000000 +0100 +++ /mounts/work_src_done/STABLE/zmd-inventory/zmd-inventory.changes 2007-02-27 05:09:42.000000000 +0100 @@ -1,0 +2,5 @@ +Tue Feb 27 05:09:11 CET 2007 - mrashmiranjan@novell.com + +- New drop + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zmd-inventory.spec ++++++ --- /var/tmp/diff_new_pack.y22760/_old 2007-02-27 08:47:28.000000000 +0100 +++ /var/tmp/diff_new_pack.y22760/_new 2007-02-27 08:47:28.000000000 +0100 @@ -14,7 +14,7 @@ BuildRequires: hwinfo-devel log4net mono-basic mono-data-sqlite mono-devel update-desktop-files zmd-devel URL: http://www.novell.com Version: 7.1.1.0 -Release: 58 +Release: 59 License: GNU Library General Public License v. 2.0 and 2.1 (LGPL) BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: %name-%version.tar.bz2 @@ -60,6 +60,8 @@ %{_prefix}/lib/zmd/modules/* %changelog +* Tue Feb 27 2007 - mrashmiranjan@novell.com +- New drop * Wed Feb 21 2007 - mrashmiranjan@novell.com - Modified the code to get correct Viewable Size, ManufactureDate. Fixes # 149103 ++++++ zmd-inventory-7.1.1.0.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/zmd-inventory-7.1.1.0/src/Scanner.cs new/zmd-inventory-7.1.1.0/src/Scanner.cs --- old/zmd-inventory-7.1.1.0/src/Scanner.cs 2007-02-15 22:10:27.000000000 +0100 +++ new/zmd-inventory-7.1.1.0/src/Scanner.cs 2007-02-26 23:01:01.000000000 +0100 @@ -718,11 +718,16 @@ NetAdapter l = new NetAdapter (s); Regex irqRegex = new Regex (@"([\d]+)"); - Match irqMatch = irqRegex.Match (s.data["IRQ"]); - string IRQ = "-1"; - if (irqMatch.Success) { - IRQ = irqMatch.Groups[0].ToString (); - } + string IRQ=null; + try{ + Match irqMatch = irqRegex.Match (s.data["IRQ"]); + IRQ = "-1"; + if (irqMatch.Success) { + IRQ = irqMatch.Groups[0].ToString (); + } + } catch(Exception e) { + log.Debug(String.Format("Exception in Parsing IRQ for network {0}", e)); + } string baseAddr = null; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- 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