Fixed type in RTP method checking

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2615 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2008-08-11 11:53:43 +00:00
parent d6fc2d0cd5
commit 24ec7eed9e
1 changed files with 1 additions and 1 deletions

View File

@ -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 );