]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
tlsproxyhelper.c: Minor style fix.
authorSimon Ruderich <simon@ruderich.org>
Sun, 3 Nov 2013 05:51:47 +0000 (06:51 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 7 Dec 2013 21:45:07 +0000 (22:45 +0100)
lib/tlsproxyhelper.c

index 53dc9e8e0b9b4e81cc38c2abb1e66d5aa38d7b9c..1281dd86590bb6f09306cb15acbba3e516ebfde9 100644 (file)
@@ -254,9 +254,9 @@ static int poll_for(int sockfd, int mode) {
     fds[0].fd      = sockfd;
     fds[0].events  = POLLERR | POLLHUP;
     /* Either poll for read or write possibility. */
-    if (1 == mode) {
+    if (mode == 1) {
         fds[0].events |= POLLIN | POLLPRI;
-    } else if (0 == mode) {
+    } else if (mode == 0) {
         fds[0].events |= POLLOUT;
     } else {
         abort();