Browse Source

fix typo; 'the the' -> 'the'

Alfred E. Heggestad 17 years ago
parent
commit
64146b1415

+ 1 - 1
cfg/cfg_ctx.h

@@ -56,7 +56,7 @@ typedef struct _cfg_ctx {
 	but have not been committed yet */
 	cfg_changed_var_t	*changed_first;
 	cfg_changed_var_t	*changed_last;
-	/* lock potecting the the linked-list of
+	/* lock protecting the linked-list of
 	changed variables */
 	gen_lock_t		lock;
 

+ 1 - 1
cfg/cfg_script.c

@@ -254,7 +254,7 @@ void cfg_script_destroy(cfg_group_t *group)
 	if (group->mapping) pkg_free(group->mapping);
 	if (group->handle) pkg_free(group->handle);
 
-	/* it may happen that the the temporary var list
+	/* it may happen that the temporary var list
 	still exists because the fixup failed and did not complete */
 	script_var = (cfg_script_var_t *)group->vars;
 	while (script_var) {

+ 1 - 1
doc/seruser/db_fifo.xml

@@ -58,7 +58,7 @@
 	interface.
 	</para>
 	<para>
-	Also the size (can fit on only one line) and the the content (\n or \r
+	Also the size (can fit on only one line) and the content (\n or \r
 	characters must be escaped) of a BLOB value is restricted.
 	</para>
     </section>

+ 1 - 1
main.c

@@ -1623,7 +1623,7 @@ try_again:
 		fprintf(stderr, "WARNING: no fork mode %s\n",
 				(udp_listen)?(
 				(udp_listen->next)?"and more than one listen address found "
-				"(will use only the the first one)":""
+				"(will use only the first one)":""
 				):"and no udp listen address found" );
 	}
 	if (config_check){

+ 1 - 1
mem/dl_malloc.c

@@ -1563,7 +1563,7 @@ static MLOCK_T magic_init_mutex;
   Each freshly allocated chunk must have both cinuse and pinuse set.
   That is, each allocated chunk borders either a previously allocated
   and still in-use chunk, or the base of its memory arena. This is
-  ensured by making all allocations from the the `lowest' part of any
+  ensured by making all allocations from the `lowest' part of any
   found chunk.  Further, no free chunk physically borders another one,
   so each free chunk is known to be preceded and followed by either
   inuse chunks or the ends of memory.

+ 2 - 2
modules/tm/README

@@ -753,7 +753,7 @@ onreply_route[0]{
 
 t_grep_status("code")
 
-   Returns true if "code" is the the final reply received (or locally
+   Returns true if "code" is the final reply received (or locally
    generated) in at least one of the current transactions branches.
 
    Example 37. t_grep_status usage
@@ -832,7 +832,7 @@ TM Module API
    (Filename is to where a report will be dumped. ser assumes /tmp as
    file's directory.)
 
-   Note the the request write must be atomic, otherwise it might get
+   Note the request write must be atomic, otherwise it might get
    intermixed with writes from other writers. You can easily use it via
    Unix command-line tools, see the following example:
 [jiri@bat jiri]$ cat > /tmp/ser_fifo

+ 1 - 1
modules/tm/doc/api.xml

@@ -45,7 +45,7 @@
 	file's directory.)
     </para>
     <para>
-	Note the the request write must be atomic, otherwise it might get
+	Note the request write must be atomic, otherwise it might get
 	intermixed with writes from other writers. You can easily use it via
 	Unix command-line tools, see the following example:
     </para>

+ 1 - 1
modules/tm/doc/functions.xml

@@ -610,7 +610,7 @@ onreply_route[0]{
 	    <function>t_grep_status("code")</function>
 	</title>
 	<para>
-		Returns true if "code" is the the final reply received (or locally
+		Returns true if "code" is the final reply received (or locally
 		 generated) in at least one of the current transactions branches.
 	</para>
 	<example>

+ 1 - 1
modules/tm/lock.c

@@ -60,7 +60,7 @@
 
    1) we allocate a semaphore set for hash_entries and
       try to use as many semaphores in it as OS allows;
-      we partition the the hash_entries by available
+      we partition the hash_entries by available
       semaphores which are shared  in each partition
    2) cells get always the same semaphore as its hash
       entry in which they live

+ 2 - 2
parser/parse_content.h

@@ -93,7 +93,7 @@ struct mime_type {
 #define get_accept(_msg_) ((int*)((_msg_)->accept->parsed))
 
 /*
- * parse the the body of the Content-Type header. It's value is also converted
+ * parse the body of the Content-Type header. It's value is also converted
  * as int.
  * Returns:   n (n>0)  : the found type
  *            0        : hdr not found
@@ -104,7 +104,7 @@ int parse_content_type_hdr( struct sip_msg *msg);
 int parse_accept_body(struct hdr_field *hdr);
 
 /*
- * parse the the body of the Accept header. It's values are also converted
+ * parse the body of the Accept header. It's values are also converted
  * as an null-terminated array of ints.
  * Returns:   1 : OK
  *            0 : hdr not found