[Buildroot] [git commit branch/2019.05.x] package/busybox/udhcpc.script: fix domain search comment

Peter Korsgaard peter at korsgaard.com
Fri Aug 30 20:33:01 UTC 2019


commit: https://git.buildroot.net/buildroot/commit/?id=255e63628bcc08f58e50437a41196151cccac30e
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2019.05.x

The domain search option is from RFC3397, not RFC3359 (which is about TLV
codepoints), so fix that.

Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
(cherry picked from commit 67a52f6fc9fe9fbe3b6ab3399ff1b55c2b4ed47c)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/busybox/udhcpc.script | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/busybox/udhcpc.script b/package/busybox/udhcpc.script
index ad110d3a7f..131c138b1a 100755
--- a/package/busybox/udhcpc.script
+++ b/package/busybox/udhcpc.script
@@ -56,7 +56,7 @@ case "$1" in
 		cat $TMPFILE > $RESOLV_CONF
 		rm -f $TMPFILE
 
-		# prefer rfc3359 domain search list (option 119) if available
+		# prefer rfc3397 domain search list (option 119) if available
 		if [ -n "$search" ]; then
 			search_list=$search
 		elif [ -n "$domain" ]; then


More information about the buildroot mailing list