summaryrefslogtreecommitdiff
path: root/serv_hash.c
diff options
context:
space:
mode:
authorPaul Warren <pdw@ex-parrot.com>2022-10-09 22:07:55 +0100
committerPaul Warren <pdw@ex-parrot.com>2022-10-09 22:07:55 +0100
commitaee8e05f48f0ffee4a724c6bd582f51ca65b27f1 (patch)
tree76dab521c580e74095b55ba4c8ecf3c0561a9d2f /serv_hash.c
parent8d76ef06d225c4d72db544b54ea1ef1a0e077967 (diff)
Show local process names.origin/proc-display
Patch from Mark Benjamin
Diffstat (limited to 'serv_hash.c')
-rw-r--r--serv_hash.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/serv_hash.c b/serv_hash.c
index 279032e..c9dbdbd 100644
--- a/serv_hash.c
+++ b/serv_hash.c
@@ -44,6 +44,7 @@ hash_type* serv_hash_create() {
hash_table->hash = &serv_hash_hash;
hash_table->delete_key = &serv_hash_delete_key;
hash_table->copy_key = &serv_hash_copy_key;
+ hash_table->not_found_callback = NULL;
hash_initialise(hash_table);
return hash_table;
}