Changeset: dfc6e2e05e76 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=dfc6e2e05e76
Modified Files:
        tools/merovingian/daemon/controlrunner.c
Branch: default
Log Message:

controlRunner: remove set but unused variable code


diffs (31 lines):

diff --git a/tools/merovingian/daemon/controlrunner.c 
b/tools/merovingian/daemon/controlrunner.c
--- a/tools/merovingian/daemon/controlrunner.c
+++ b/tools/merovingian/daemon/controlrunner.c
@@ -659,7 +659,6 @@ controlRunner(void *d)
        fd_set fds;
        struct timeval tv;
        int msgsock;
-       err e;
        char origin[128];
 
        do {
@@ -677,10 +676,6 @@ controlRunner(void *d)
                if (retval < 0) {
                        if (_mero_keep_listening == 0)
                                break;
-                       if (errno != EINTR) {
-                               e = newErr("control runner: error during 
select: %s",
-                                               strerror(errno));
-                       }
                        continue;
                }
 
@@ -694,7 +689,7 @@ controlRunner(void *d)
                        if (_mero_keep_listening == 0)
                                break;
                        if (errno != EINTR) {
-                               e = newErr("control runner: error during 
accept: %s",
+                               Mfprintf(_mero_ctlerr, "error during accept: 
%s",
                                                strerror(errno));
                        }
                        continue;
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to