From: Sascha Hauer <s.hauer@pengutronix.de> To: Barebox List <barebox@lists.infradead.org> Subject: [PATCH] net: dns: Return error when nameserver not given Date: Mon, 13 Jun 2022 09:05:47 +0200 [thread overview] Message-ID: <20220613070547.306218-1-s.hauer@pengutronix.de> (raw) When no nameserver is given then return an error instead of returning successfully with 0.0.0.0 as return IP. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> --- net/dns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/dns.c b/net/dns.c index 8b5e8d59e8..fdddb3f915 100644 --- a/net/dns.c +++ b/net/dns.c @@ -226,7 +226,7 @@ int resolv(const char *host, IPaddr_t *ip) nameserver = net_get_nameserver(); if (!nameserver) { pr_err("no nameserver specified in $global.net.nameserver\n"); - return 0; + return -ENOENT; } pr_debug("resolving host %s via nameserver %pI4\n", host, &nameserver); -- 2.30.2 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox
reply other threads:[~2022-06-13 7:07 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20220613070547.306218-1-s.hauer@pengutronix.de \ --to=s.hauer@pengutronix.de \ --cc=barebox@lists.infradead.org \ --subject='Re: [PATCH] net: dns: Return error when nameserver not given' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox