add missing byte to dingaling

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1072 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2006-04-06 23:31:01 +00:00
parent 394a0c3c02
commit 46febe98bc
2 changed files with 2 additions and 2 deletions

View File

@ -1090,7 +1090,7 @@ ldl_status ldl_handle_init(ldl_handle_t **handle,
new_handle->pool = pool;
apr_queue_create(&new_handle->queue, LDL_HANDLE_QLEN, new_handle->pool);
apr_queue_create(&new_handle->retry_queue, LDL_HANDLE_QLEN, new_handle->pool);
new_handle->features |= IKS_STREAM_BIND|IKS_STREAM_SESSION|IKS_STREAM_SASL_PLAIN;
new_handle->features |= IKS_STREAM_BIND|IKS_STREAM_SESSION |IKS_STREAM_SASL_PLAIN;
new_handle->sessions = apr_hash_make(new_handle->pool);
new_handle->retry_hash = apr_hash_make(new_handle->pool);
new_handle->probe_hash = apr_hash_make(new_handle->pool);

View File

@ -100,7 +100,7 @@ struct private_object {
char *remote_ip;
switch_port_t local_port;
switch_port_t remote_port;
char local_user[16];
char local_user[17];
char *remote_user;
unsigned int cand_id;
unsigned int desc_id;