Browse Source

core: parse - fix typo in comment of previous commit

Daniel-Constantin Mierla 3 years ago
parent
commit
8b20e6045d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/parser/parse_uri.c

+ 1 - 1
src/core/parser/parse_uri.c

@@ -1238,7 +1238,7 @@ int parse_uri(char* buf, int len, struct sip_uri* uri)
 
 	/* common sanity checks */
 	if(uri->port.len>5) {
-		/* port value to large */
+		/* port value too large */
 		goto error_invalid_port;
 	}
 	if(uri->host.len>0 && uri->host.s>buf && *(uri->host.s-1)=='@'