diff options
author | Christian Hesse <mail@eworm.de> | 2017-12-13 16:22:31 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2017-12-13 16:22:31 +0100 |
commit | 0d9edcb6f67b1cd74bf5ae8ec9cdc7af1259960c (patch) | |
tree | bd030419af0279362d697848ad1837b1c305e311 /pacman | |
parent | 07c4477b17d70f0109ab0d2b3304c72a24c37ef7 (diff) | |
download | pacredir-0d9edcb6f67b1cd74bf5ae8ec9cdc7af1259960c.tar.gz pacredir-0d9edcb6f67b1cd74bf5ae8ec9cdc7af1259960c.tar.zst |
use ipv4 loopback address explicitly
Depending on the system configuration 'loopback' can resolve to an IPv4
or IPv6 loopback address. As we bind to 127.0.0.1 use the same address
here.
Diffstat (limited to 'pacman')
-rw-r--r-- | pacman/pacredir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pacman/pacredir b/pacman/pacredir index a1de680..0a1e1fc 100644 --- a/pacman/pacredir +++ b/pacman/pacredir @@ -1,2 +1,2 @@ # Make sure local service pacredir is running! -Server = http://localhost:7077/ +Server = http://127.0.0.1:7077/ |