Explorar o código

- fixed misleading error messages

Jan Janak %!s(int64=20) %!d(string=hai) anos
pai
achega
fcf655d024
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      dset.c

+ 2 - 2
dset.c

@@ -320,7 +320,7 @@ int rewrite_uri(struct sip_msg* _m, str* _s)
 
         buf = (char*)pkg_malloc(_s->len + 1);
         if (!buf) {
-                LOG(L_ERR, "ERROR: TOI: rewrite_uri: No memory left\n");
+                LOG(L_ERR, "ERROR: rewrite_uri: No memory left\n");
                 return -1;
         }
 
@@ -335,7 +335,7 @@ int rewrite_uri(struct sip_msg* _m, str* _s)
         _m->new_uri.s = buf;
         _m->new_uri.len = _s->len;
 
-        DBG("TOI: rewrite_uri: Rewriting Request-URI with '%.*s'\n", _s->len, 
+        DBG("rewrite_uri: Rewriting Request-URI with '%.*s'\n", _s->len, 
 																		   buf);
         return 1;
 }