From 752cfb16fe419443e712f194ee897e2b1317076e Mon Sep 17 00:00:00 2001 From: Chris Winter Date: Mon, 4 May 2009 18:32:05 +0200 Subject: rtspsrc: fix dummy nat packet logic Fix a typo in the dummy NAT packet sending code. Fixes #581329 --- gst/rtsp/gstrtspsrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/rtsp') diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index 3d572863..d9fb609d 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -2465,7 +2465,7 @@ gst_rtspsrc_send_dummy_packets (GstRTSPSrc * src) { GList *walk; - if (!src->nat_method != GST_RTSP_NAT_DUMMY) + if (src->nat_method != GST_RTSP_NAT_DUMMY) return TRUE; for (walk = src->streams; walk; walk = g_list_next (walk)) { -- cgit