Index: coreapi/authentication.c
===================================================================
RCS file: /sources/linphone/linphone/coreapi/authentication.c,v
retrieving revision 1.16
diff --unified -r1.16 authentication.c
--- coreapi/authentication.c	8 May 2007 13:57:46 -0000	1.16
+++ coreapi/authentication.c	16 May 2007 09:56:07 -0000
@@ -240,8 +240,8 @@
 	gstate_new_state(lc, GSTATE_REG_FAILED, "Authentication required");
 
 	username=osip_uri_get_username(resp->from->url);
-	prx_auth=(osip_proxy_authenticate_t*)osip_list_get(&resp->proxy_authenticates,0);
-	www_auth=(osip_proxy_authenticate_t*)osip_list_get(&resp->www_authenticates,0);
+	prx_auth=(osip_proxy_authenticate_t*)osip_list_get(resp->proxy_authenticates,0);
+	www_auth=(osip_proxy_authenticate_t*)osip_list_get(resp->www_authenticates,0);
 	if (prx_auth!=NULL)
 		prx_realm=osip_proxy_authenticate_get_realm(prx_auth);
 	if (www_auth!=NULL)
Index: coreapi/exevents.c
===================================================================
RCS file: /sources/linphone/linphone/coreapi/exevents.c,v
retrieving revision 1.40
diff --unified -r1.40 exevents.c
--- coreapi/exevents.c	8 May 2007 15:09:00 -0000	1.40
+++ coreapi/exevents.c	16 May 2007 09:56:07 -0000
@@ -21,7 +21,7 @@
 #include "linphonecore.h"
 #include "private.h"
 #include "mediastreamer2/mediastream.h"
-#include <eXosip/eXosip.h>
+//#include <eXosip/eXosip.h>
 #include <osipparser2/osip_message.h>
 
 
Index: coreapi/misc.c
===================================================================
RCS file: /sources/linphone/linphone/coreapi/misc.c,v
retrieving revision 1.68
diff --unified -r1.68 misc.c
--- coreapi/misc.c	8 May 2007 13:57:46 -0000	1.68
+++ coreapi/misc.c	16 May 2007 09:56:08 -0000
@@ -326,10 +326,10 @@
 	osip_from_t *tmpfrom=NULL;
 	osip_from_clone(from,&tmpfrom);
 	if (tmpfrom!=NULL){
-		while(!osip_list_eol(&tmpfrom->gen_params,0)){
-			osip_generic_param_t *param=(osip_generic_param_t*)osip_list_get(&tmpfrom->gen_params,0);
+		while(!osip_list_eol(tmpfrom->gen_params,0)){
+			osip_generic_param_t *param=(osip_generic_param_t*)osip_list_get(tmpfrom->gen_params,0);
 			osip_generic_param_free(param);
-			osip_list_remove(&tmpfrom->gen_params,0);
+			osip_list_remove(tmpfrom->gen_params,0);
 		}
 	}else return -1;
 	osip_from_to_str(tmpfrom,str);
