diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index b78c6aa72e6cf1324ceef6c77a0773a8e2e312fb..c2b19fdc5e118a3b86d9f27f6eafe981e22aacd2 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -6315,7 +6315,15 @@ static int dahdi_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
 
 	if (analog_lib_handles(p->sig, p->radio, p->oprmode)) {
 		analog_fixup(oldchan, newchan, p->sig_pvt);
+	} 
+#ifdef HAVE_PRI
+	else if (dahdi_sig_pri_lib_handles(p->sig)) {
+		struct sig_pri_chan *pchan = p->sig_pvt;
+		if (pchan->owner == oldchan) {
+			pchan->owner = newchan;
+		}
 	}
+#endif
 
 	update_conf(p);
 	ast_mutex_unlock(&p->lock);