浏览代码

core: small spelling fix (bellow -> below)

Henning Westerholt 7 年之前
父节点
当前提交
82220a00e5
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      src/core/flags.c
  2. 1 1
      src/core/receive.c
  3. 1 1
      src/core/tcp_read.c

+ 1 - 1
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;
 	}
 

+ 1 - 1
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;

+ 1 - 1
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;