Skip to content

Commit

Permalink
domain: fix spelling error
Browse files Browse the repository at this point in the history
(cherry picked from commit 0944689)
  • Loading branch information
linuxmaniac committed Oct 22, 2019
1 parent 09b3a82 commit d6a5569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/domain/hash.c
Expand Up @@ -137,7 +137,7 @@ int hash_table_install(struct domain_list **hash_table, str *did, str *domain)
np->did.len = did->len;
np->did.s = (char *)shm_malloc(did->len);
if(np->did.s == NULL) {
LM_ERR("no shared memeory for did\n");
LM_ERR("no shared memory for did\n");
shm_free(np);
return -1;
}
Expand Down Expand Up @@ -210,4 +210,4 @@ void hash_table_free(struct domain_list **hash_table)

hash_table[DOM_HASH_SIZE] = NULL;
return;
}
}

0 comments on commit d6a5569

Please sign in to comment.