Slightly tidied things up if connection failure.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1219 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2005-01-16 16:39:31 +00:00
parent 086c5cc873
commit 4bcd7c7d81
1 changed files with 2 additions and 1 deletions

View File

@ -137,7 +137,7 @@ int RemoteCamera::Connect()
{
if ( sd < 0 )
{
sd = socket(hp->h_addrtype, SOCK_STREAM, 0);
sd = socket( hp->h_addrtype, SOCK_STREAM, 0 );
if ( sd < 0 )
{
Error(( "Can't create socket: %s", strerror(errno) ));
@ -147,6 +147,7 @@ int RemoteCamera::Connect()
if ( connect( sd, (struct sockaddr *)&sa, sizeof(sa) ) < 0 )
{
Error(( "Can't connect to remote camera: %s", strerror(errno) ));
Disconnect();
return( -1 );
}
}