*** empty log message ***

This commit is contained in:
Thomas Ries
2004-06-12 09:42:45 +00:00
parent 352a0f43a9
commit 4a48f57bac
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
0.5.7
=====
11-Jun-2004: - silenced some MSN Messenger provoked WARNings (empty user)
11-Jun-2004: - silenced some MSN Messenger provoked WARNings
29-May-2004: - "determine next hop" also takes Route header into account
(outgoing packets only, incoming can not have a proxy
in between siproxd and the client anyway)
+1 -1
View File
@@ -233,7 +233,7 @@ int register_client(osip_message_t *my_msg, int force_lcl_masq) {
expires=atoi(expires_hdr->hvalue);
} else {
/* it seems, the expires field is not present everywhere... */
WARN("no 'expires' header found - set time to 600 sec");
DEBUGC(DBCLASS_REG,"no 'expires' header found - set time to 600 sec");
expires=600;
osip_message_set_expires(my_msg, "600");
}
+1 -1
View File
@@ -127,7 +127,7 @@ int get_ip_by_host(char *hostname, struct in_addr *addr) {
&result_buffer, /* the result buffer */
&hostentry
);
if (hostentry == NULL) my_error = h_errno;
if (hostentry == NULL) error = h_errno;
/* gethostbyname_r() with 5 arguments (e.g. solaris, linux libc5) */
#elif defined(HAVE_FUNC_GETHOSTBYNAME_R_5)