aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-11-21 21:52:10 +0100
committerMarvin Borner2020-11-21 21:52:10 +0100
commitb05a30248a49913b6d4c09cc2f76c9527d88935a (patch)
tree9e9fa4b40d21015e9004cd5b1c05b2ec7fe41c37 /apps
parent9b0fb12b247542defa3b85b0a29344b6e6d6c803 (diff)
Added magic DNS algorithm
Coffein helped me write this lol. It's actually pretty dumb but WTH - it works!
Diffstat (limited to 'apps')
-rw-r--r--apps/browser.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/browser.c b/apps/browser.c
index b434c7c..c51b0a4 100644
--- a/apps/browser.c
+++ b/apps/browser.c
@@ -72,9 +72,7 @@ void on_submit(void *event, struct element *box)
u32 ip = 0;
if (!ip_pton(url, &ip)) {
- char *dns[2];
- dns_split(url, dns);
- ip = dns_request(dns[0], dns[1]);
+ ip = dns_request(url);
}
struct element_text_box *l = output->data;