Browse Source

- fixed wrong comments, reported by Bogdan Pintea
closes SER-123

Jan Janak 19 years ago
parent
commit
c70b2eb55a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      select_core.c
  2. 1 1
      sr_module.c

+ 1 - 1
select_core.c

@@ -705,7 +705,7 @@ int select_any_params(str* res, select_t* s, struct sip_msg* msg)
 	}
 	free_params(list);
 
-	DBG("SELECT ...uri.params.%s NOT FOUND !", wanted->s);
+	DBG("SELECT ...uri.params.%s NOT FOUND !\n", wanted->s);
 	return -1;
 }
 

+ 1 - 1
sr_module.c

@@ -854,7 +854,7 @@ int fixup_str_12(void** param, int param_no)
     int ret;
 
     if ((ret = fix_param(FPARAM_STR, param)) <= 0) return ret;
-    ERR("Cannot function parameter to integer\n");
+    ERR("Cannot function parameter to string\n");
     return -1;
 }