From 24ec7eed9e9c5452af646797030e74d743c0a55e Mon Sep 17 00:00:00 2001 From: stan Date: Mon, 11 Aug 2008 11:53:43 +0000 Subject: [PATCH] Fixed type in RTP method checking git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2615 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zm_remote_camera_rtsp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_remote_camera_rtsp.cpp b/src/zm_remote_camera_rtsp.cpp index 3bb3ed387..a1a7e16d1 100644 --- a/src/zm_remote_camera_rtsp.cpp +++ b/src/zm_remote_camera_rtsp.cpp @@ -38,7 +38,7 @@ RemoteCameraRtsp::RemoteCameraRtsp( int p_id, const std::string &p_method, const method = RtspThread::RTP_MULTICAST; else if ( p_method == "rtpRtsp" ) method = RtspThread::RTP_RTSP; - else if ( p_method == "rtRtspHttp" ) + else if ( p_method == "rtpRtspHttp" ) method = RtspThread::RTP_RTSP_HTTP; else Fatal( "Unrecognised method '%s' when creating RTSP camera %d", p_method.c_str(), id );