diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2008-11-21 13:08:25 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2008-11-21 13:08:25 +0000 |
commit | f3e4182263f6fbf4f308e13a2439876c6c5b430a (patch) | |
tree | c3afcf00a1763798a92f76c3f82f307acbdbfb7a /net-misc/dhcpcd/files | |
parent | Die when dolib or newsbin fail since the make process always return success. (diff) | |
download | gentoo-2-f3e4182263f6fbf4f308e13a2439876c6c5b430a.tar.gz gentoo-2-f3e4182263f6fbf4f308e13a2439876c6c5b430a.tar.bz2 gentoo-2-f3e4182263f6fbf4f308e13a2439876c6c5b430a.zip |
Version bump. Remove old. Proxy commit for Roy.
(Portage version: 2.2_rc14/cvs/Linux 2.6.27-gentoo x86_64)
Diffstat (limited to 'net-misc/dhcpcd/files')
-rw-r--r-- | net-misc/dhcpcd/files/dhcpcd-4.99.2-no-empty-clientid.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/net-misc/dhcpcd/files/dhcpcd-4.99.2-no-empty-clientid.patch b/net-misc/dhcpcd/files/dhcpcd-4.99.2-no-empty-clientid.patch deleted file mode 100644 index 853cbacb7ff2..000000000000 --- a/net-misc/dhcpcd/files/dhcpcd-4.99.2-no-empty-clientid.patch +++ /dev/null @@ -1,19 +0,0 @@ -Restore the 3.x behavior of an empty -I '' argument. - -Bug: http://bugs.marples.name/show_bug.cgi?id=116 -Patch: forward-ported from 4.0.1 version. - -Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> - -diff -Nuar --exclude '*.orig' --exclude '*.rej' dhcpcd-4.99.2.orig/if-options.c dhcpcd-4.99.2/if-options.c ---- dhcpcd-4.99.2.orig/if-options.c 2008-09-19 06:36:40.000000000 -0700 -+++ dhcpcd-4.99.2/if-options.c 2008-09-25 01:27:46.115364821 -0700 -@@ -494,7 +494,7 @@ - case 'I': - /* Strings have a type of 0 */; - ifo->clientid[1] = 0; -- if (arg) -+ if (arg && *arg) - s = parse_string_hwaddr((char *)ifo->clientid + 1, - CLIENTID_MAX_LEN, arg, 1); - else |