mirror of
https://git.jff.email/cgit/dmidecode.git
synced 2026-08-07 08:56:57 +00:00
Merge branch 'release/debian/3.3-2'
This commit is contained in:
commit
f69915f8b9
11
debian/changelog
vendored
11
debian/changelog
vendored
@ -1,3 +1,14 @@
|
||||
dmidecode (3.3-2) unstable; urgency=medium
|
||||
|
||||
* Add upstream recommended patches (Closes: #987033):
|
||||
- New debian/patches/0145-Fix_condition_error_in_ascii_filter.patch.
|
||||
- New debian/patches/0150-Fix_crash.patch.
|
||||
* Declare compliance with Debian Policy 4.5.1 (No changes needed).
|
||||
* debian/copyright:
|
||||
- Add year 2021 to myself.
|
||||
|
||||
-- Jörg Frings-Fürst <debian@jff.email> Mon, 17 May 2021 18:53:43 +0200
|
||||
|
||||
dmidecode (3.3-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release.
|
||||
|
||||
2
debian/control
vendored
2
debian/control
vendored
@ -3,7 +3,7 @@ Section: utils
|
||||
Priority: optional
|
||||
Maintainer: Jörg Frings-Fürst <debian@jff.email>
|
||||
Build-Depends: debhelper-compat (= 13)
|
||||
Standards-Version: 4.5.0
|
||||
Standards-Version: 4.5.1
|
||||
Rules-Requires-Root: no
|
||||
Vcs-Git: git://jff.email/opt/git/dmidecode.git
|
||||
Vcs-Browser: https://jff.email/cgit/dmidecode.git/
|
||||
|
||||
2
debian/copyright
vendored
2
debian/copyright
vendored
@ -13,7 +13,7 @@ License: GPL-2+
|
||||
Files: debian/*
|
||||
Copyright: 2003-2007 Petter Reinholdtsen <pere@debian.org>
|
||||
2011-2012 Daniel Baumann <daniel.baumann@progress-technologies.net>
|
||||
2014-2020 Jörg Frings-Fürst <debian@jff.email>
|
||||
2014-2021 Jörg Frings-Fürst <debian@jff.email>
|
||||
License: GPL-2+
|
||||
|
||||
License: GPL-2+
|
||||
|
||||
18
debian/patches/0145-Fix_condition_error_in_ascii_filter.patch
vendored
Normal file
18
debian/patches/0145-Fix_condition_error_in_ascii_filter.patch
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
Description: Fix the condition error in ascii_filter
|
||||
Origin: upstream, http://git.savannah.gnu.org/cgit/dmidecode.git/commit/?id=1117390ccd9cea139638db6f460bb6de70e28f94
|
||||
Last-Update: 2021-05-07
|
||||
---
|
||||
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
||||
Index: trunk/dmidecode.c
|
||||
===================================================================
|
||||
--- trunk.orig/dmidecode.c
|
||||
+++ trunk/dmidecode.c
|
||||
@@ -116,7 +116,7 @@ static void ascii_filter(char *bp, size_
|
||||
size_t i;
|
||||
|
||||
for (i = 0; i < len; i++)
|
||||
- if (bp[i] < 32 || bp[i] == 127)
|
||||
+ if (bp[i] < 32 || bp[i] >= 127)
|
||||
bp[i] = '.';
|
||||
}
|
||||
|
||||
21
debian/patches/0150-Fix_crash.patch
vendored
Normal file
21
debian/patches/0150-Fix_crash.patch
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
Description: Fix crash with -u option
|
||||
Origin: upstream, http://git.savannah.gnu.org/cgit/dmidecode.git/commit/?id=11e134e54d15e67a64c39a623f492a28df922517
|
||||
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=987033
|
||||
Last-Update: 2021-05-07
|
||||
---
|
||||
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
||||
Index: trunk/dmidecode.c
|
||||
===================================================================
|
||||
--- trunk.orig/dmidecode.c
|
||||
+++ trunk/dmidecode.c
|
||||
@@ -248,9 +248,9 @@ static void dmi_dump(const struct dmi_he
|
||||
{
|
||||
int j, l = strlen(s) + 1;
|
||||
|
||||
- off = 0;
|
||||
for (row = 0; row < ((l - 1) >> 4) + 1; row++)
|
||||
{
|
||||
+ off = 0;
|
||||
for (j = 0; j < 16 && j < l - (row << 4); j++)
|
||||
off += sprintf(raw_data + off,
|
||||
j ? " %02X" : "%02X",
|
||||
2
debian/patches/series
vendored
2
debian/patches/series
vendored
@ -1,3 +1,5 @@
|
||||
0145-Fix_condition_error_in_ascii_filter.patch
|
||||
0150-Fix_crash.patch
|
||||
0100-ansi-c.patch
|
||||
0001-hurd.patch
|
||||
#0005-build.patch
|
||||
|
||||
Loading…
Reference in New Issue
Block a user