Merge lp:~sunyucong/ubuntu/lucid/iptraf/iptraf-fix-interface-selection into lp:ubuntu/lucid/iptraf

Proposed by Yucong Sun
Status: Merged
Merge reported by: Benjamin Drung
Merged at revision: not available
Proposed branch: lp:~sunyucong/ubuntu/lucid/iptraf/iptraf-fix-interface-selection
Merge into: lp:ubuntu/lucid/iptraf
Diff against target: 25 lines (+7/-1)
2 files modified
debian/changelog (+6/-0)
src/ifaces.c (+1/-1)
To merge this branch: bzr merge lp:~sunyucong/ubuntu/lucid/iptraf/iptraf-fix-interface-selection
Reviewer Review Type Date Requested Status
James Westby Pending
Ubuntu Development Team Pending
Review via email: mp+58632@code.launchpad.net

Description of the change

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2009-09-13 14:36:18 +0000
3+++ debian/changelog 2011-04-21 06:57:31 +0000
4@@ -1,3 +1,9 @@
5+iptraf (3.0.0-8) lucid; urgency=low
6+
7+ * src/iface.c: fix strcpy overlap memory problem. (LP: #568164)
8+
9+ -- Yucong Sun <sunyucong@gmail.com> Wed, 20 Apr 2011 23:52:10 -0700
10+
11 iptraf (3.0.0-7) unstable; urgency=low
12
13 * src/packet.[ch], src/links.h, src/hostmon.c: remove special casing of VLAN
14
15=== modified file 'src/ifaces.c'
16--- src/ifaces.c 2007-09-29 12:42:56 +0000
17+++ src/ifaces.c 2011-04-21 06:57:31 +0000
18@@ -50,7 +50,7 @@
19 while ((*tmp == ' ') || (*tmp == '\t'))
20 tmp++;
21
22- strcpy(buf, tmp);
23+ memmove(buf, tmp, strlen(buf));
24 return buf;
25 }
26

Subscribers

People subscribed via source and target branches

to all changes: