diff options
Diffstat (limited to 'libports/lookup-port.c')
-rw-r--r-- | libports/lookup-port.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libports/lookup-port.c b/libports/lookup-port.c index d0ee8d00..8eb98a12 100644 --- a/libports/lookup-port.c +++ b/libports/lookup-port.c @@ -32,11 +32,11 @@ ports_lookup_port (struct port_bucket *bucket, mutex_lock (&_ports_lock); if (bucket) - pi = ihash_find (bucket->htable, port); + pi = hurd_ihash_find (&bucket->htable, port); else for (bucket = _ports_all_buckets; bucket; bucket = bucket->next) { - pi = ihash_find (bucket->htable, port); + pi = hurd_ihash_find (&bucket->htable, port); if (pi) break; } |