diff --git a/src/core/flags.c b/src/core/flags.c index 45839d90cdf..ae2d32486b6 100644 --- a/src/core/flags.c +++ b/src/core/flags.c @@ -302,7 +302,7 @@ static int fixup_t_flag(void** param, int param_no) if (*code < FL_MAX && token==0) { LM_ERR("TM module: too high flag number: %s (%d)\n; lower number" - " bellow %d reserved\n", (char *) (*param), *code, FL_MAX ); + " below %d reserved\n", (char *) (*param), *code, FL_MAX ); goto error; } diff --git a/src/core/receive.c b/src/core/receive.c index b14ebf8fb98..6be8fdea4d6 100644 --- a/src/core/receive.c +++ b/src/core/receive.c @@ -202,7 +202,7 @@ int receive_msg(char *buf, unsigned int len, struct receive_info *rcv_info) /* fill in msg */ msg->buf = buf; msg->len = len; - /* zero termination (termination of orig message bellow not that + /* zero termination (termination of orig message below not that * useful as most of the work is done with scratch-pad; -jiri */ /* buf[len]=0; */ /* WARNING: zero term removed! */ msg->rcv = *rcv_info; diff --git a/src/core/tcp_read.c b/src/core/tcp_read.c index 8cab30f2c41..4c1821a4bb7 100644 --- a/src/core/tcp_read.c +++ b/src/core/tcp_read.c @@ -1333,7 +1333,7 @@ static int hep3_process_msg(char* tcpbuf, unsigned int len, /* fill in msg */ msg.buf=tcpbuf; msg.len=len; - /* zero termination (termination of orig message bellow not that + /* zero termination (termination of orig message below not that * useful as most of the work is done with scratch-pad; -jiri */ /* buf[len]=0; */ /* WARNING: zero term removed! */ msg.rcv=*rcv_info;