Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
James Stanley committed Mar 13, 2023
1 parent f42e0c1 commit 5ba4ddb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/uac_registrant/registrant.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ static int mod_init(void)
register_timer("uac_reg_check", timer_check, (void*)(long)param, _timer,
TIMER_FLAG_DELAY_ON_DELAY);
} else {
LM_ERR("timer_interval=[%d] MUST be bigger then reg_hsize=[%d]\n",
LM_ERR("timer_interval=[%d] MUST be at least as big as reg_hsize=[%d]\n",
timer_interval, reg_hsize);
return -1;
}
Expand Down
4 changes: 2 additions & 2 deletions net/net_tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1985,7 +1985,7 @@ static void tcp_process_graceful_terminate(int sender, void *param)
}


/* counts the number of TPC processes to start with; this number may
/* counts the number of TCP processes to start with; this number may
* change during runtime due auto-scaling */
int tcp_count_processes(unsigned int *extra)
{
Expand All @@ -1996,7 +1996,7 @@ int tcp_count_processes(unsigned int *extra)


if (s_profile && extra) {
/* how many can be forked over th number of procs to start with ?*/
/* how many can be forked over the number of procs to start with ?*/
if (s_profile->max_procs > tcp_workers_no)
*extra = s_profile->max_procs - tcp_workers_no;
}
Expand Down

0 comments on commit 5ba4ddb

Please sign in to comment.