diff --git a/apps/Makefile b/apps/Makefile
index 1fec5c14b6bc0a3008e0c66eb309ae6630bdd9ac..ead8f1034ac79dbeda32cc2b64f5218b738150a0 100755
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -11,7 +11,7 @@
 # the GNU General Public License
 #
 
-USE_MYSQL_VM_INTERFACE=1
+USE_MYSQL_VM_INTERFACE=0
 
 MLFLAGS=
 ifeq ($(USE_MYSQL_VM_INTERFACE),1)
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 5fb2118bb58f62d7d7b1c24ec06c17ce4ea29a3a..cacbba90d985b494977d60cbbab4728b06dc7d7b 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -5083,6 +5083,7 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
 		if (!p->lastinvite && !strlen(p->randdata))
 			p->needdestroy = 1;
 	} else if (!strcasecmp(cmd, "SIP/2.0")) {
+		extract_uri(p, req);
 		while(*e && (*e < 33)) e++;
 		if (sscanf(e, "%i %n", &respid, &len) != 1) {
 			ast_log(LOG_WARNING, "Invalid response: '%s'\n", e);