summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-01-26 20:39:33 +0100
committerLennart Poettering <lennart@poettering.net>2016-01-26 20:39:33 +0100
commit915849d895788364dbf0dd0f45957f6680e4431d (patch)
tree875544ca28e2bfd56d83e38744010f51d2b15df1 /src
parent44cc9f2d769596c41f2ace9a4093651b0688d0f8 (diff)
parentec76e139d8ce0a1183ae7639ae31a28e7e90791b (diff)
Merge pull request #2444 from phomes/resolve-compare-function
resolve: fix compare function for EtcHostItem
Diffstat (limited to 'src')
-rw-r--r--src/resolve/resolved-etc-hosts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resolve/resolved-etc-hosts.c b/src/resolve/resolved-etc-hosts.c
index 467754774f..ee82c96822 100644
--- a/src/resolve/resolved-etc-hosts.c
+++ b/src/resolve/resolved-etc-hosts.c
@@ -78,7 +78,7 @@ static void etc_hosts_item_hash_func(const void *p, struct siphash *state) {
static int etc_hosts_item_compare_func(const void *a, const void *b) {
const EtcHostsItem *x = a, *y = b;
- if (x->family != x->family)
+ if (x->family != y->family)
return x->family - y->family;
if (x->family == AF_INET)