about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-08-13 14:38:33 -0400
committerJune McEnroe <programble@gmail.com>2017-08-13 14:38:33 -0400
commitf96dcf480e66d5a9a3d88c9fb7827d81ab3cfa77 (patch)
tree51556522ba38caff1291304f51cd6a792345895f
parentCheck COLOR_PAIRS in client (diff)
downloadtorus-f96dcf480e66d5a9a3d88c9fb7827d81ab3cfa77.tar.gz
torus-f96dcf480e66d5a9a3d88c9fb7827d81ab3cfa77.zip
Clean up unnecessary kevent initializers
-rwxr-xr-xserver.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/server.c b/server.c
index c3ae650..e360067 100755
--- a/server.c
+++ b/server.c
@@ -279,9 +279,6 @@ int main() {
         .ident = server,
         .filter = EVFILT_READ,
         .flags = EV_ADD,
-        .fflags = 0,
-        .data = 0,
-        .udata = NULL,
     };
     int nevents = kevent(kq, &event, 1, NULL, 0, NULL);
     if (nevents < 0) err(EX_OSERR, "kevent");
@@ -330,8 +327,6 @@ int main() {
             .ident = fd,
             .filter = EVFILT_READ,
             .flags = EV_ADD,
-            .fflags = 0,
-            .data = 0,
             .udata = client,
         };
         nevents = kevent(kq, &event, 1, NULL, 0, NULL);
h=3.5.0&id=4b0ab841546a4341b23fa5270c2fb37c5f6cf302&follow=1'>build: Remove added x509_verify.3 links 3.3.2June McEnroe 2021-04-18tls: Use EC_KEY_set_ex_dataJune McEnroe 2021-04-18Import LibreSSL 3.3.2June McEnroe 2021-03-05Bump version to 3.3.1p1 3.3.1p1June McEnroe 2021-03-05build: Add OpenSSL includes to libcompatJune McEnroe Some compat sources (getentropy_linux.c for example) require OpenSSL. Reported by Robert Scheck. 2020-12-15Import LibreSSL 3.3.1June McEnroe 2020-11-24Import LibreSSL 3.3.0June McEnroe 2020-10-22Import LibreSSL 3.2.2June McEnroe 2020-09-29Import LibreSSL 3.2.1June McEnroe 2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe 2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe 2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe