Skip to content

Commit

Permalink
auth_identity: typos an other → another
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov authored and miconda committed Dec 16, 2022
1 parent 4a4dfb6 commit 5836706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/auth_identity/auth_tables.c
Expand Up @@ -351,7 +351,7 @@ void cert_item_init()
glb_tnow=time(0);
}

/* we remove a certificate if expired or if accessed less than an other */
/* we remove a certificate if expired or if accessed less than another */
int cert_item_least(const void *s1, const void *s2)
{
if (((tcert_item *)s1)->ivalidbefore < glb_tnow)
Expand Down Expand Up @@ -447,7 +447,7 @@ void cid_item_init()
glb_tnow=time(0);
}

/* we remove a call-id if older than an other */
/* we remove a call-id if older than another */
int cid_item_least(const void *s1, const void *s2)
{
if (((tcid_item *)s1)->ivalidbefore < glb_tnow)
Expand Down

0 comments on commit 5836706

Please sign in to comment.