diff options
author | schmirl <schmirl> | 2007-01-15 11:45:48 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2007-01-15 11:45:48 +0000 |
commit | 970bf59cc2c1238f2f3d772ec825369f58c8d5ed (patch) | |
tree | 9460ea43bab2e01dc902a9834bb41b64e7ebabca | |
parent | 56571d5879cf734770194ea975416883a5007cc5 (diff) | |
download | vdr-plugin-streamdev-970bf59cc2c1238f2f3d772ec825369f58c8d5ed.tar.gz vdr-plugin-streamdev-970bf59cc2c1238f2f3d772ec825369f58c8d5ed.tar.bz2 |
Indenting - no code changes
-rw-r--r-- | client/socket.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/socket.c b/client/socket.c index 40772d6..e59c705 100644 --- a/client/socket.c +++ b/client/socket.c @@ -1,5 +1,5 @@ /* - * $Id: socket.c,v 1.6 2007/01/15 11:41:46 schmirl Exp $ + * $Id: socket.c,v 1.7 2007/01/15 11:45:48 schmirl Exp $ */ #include <tools/select.h> @@ -114,12 +114,12 @@ bool cClientSocket::CheckConnection(void) { } if (!Connect(StreamdevClientSetup.RemoteIp, StreamdevClientSetup.RemotePort)){ - static time_t lastTime = 0; + static time_t lastTime = 0; if (time(NULL) - lastTime > MINLOGREPEAT) { - esyslog("ERROR: Streamdev: Couldn't connect to %s:%d: %s", + esyslog("ERROR: Streamdev: Couldn't connect to %s:%d: %s", (const char*)StreamdevClientSetup.RemoteIp, StreamdevClientSetup.RemotePort, strerror(errno)); - lastTime = time(NULL); + lastTime = time(NULL); } return false; } |