about summary refs log tree commit homepage
path: root/xt
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-09-25 23:29:56 +0000
committerEric Wong <e@80x24.org>2023-09-26 07:02:18 +0000
commit62d50411dcc92cdf406d52a94d99157cdeb31494 (patch)
tree005a89542104c6d0836e1e674acf59584ffe4951 /xt
parent80b7833152316552d75103dec6666701242513e1 (diff)
downloadpublic-inbox-62d50411dcc92cdf406d52a94d99157cdeb31494.tar.gz
The export tag for :epoll no longer exists and it seems like
it hasn't been needed in a while, anyways.  We can also drop a
useless EPOLLIN import, as well.

Fixes: 3005c1bc5d05 (ds: use object-oriented API for epoll)
Diffstat (limited to 'xt')
-rw-r--r--xt/mem-nntpd-tls.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/xt/mem-nntpd-tls.t b/xt/mem-nntpd-tls.t
index a861e318..f9b98a6b 100644
--- a/xt/mem-nntpd-tls.t
+++ b/xt/mem-nntpd-tls.t
@@ -9,7 +9,7 @@ use Socket qw(SOCK_STREAM IPPROTO_TCP SOL_SOCKET);
 require_mods(qw(-nntpd));
 require PublicInbox::InboxWritable;
 require PublicInbox::SearchIdx;
-use PublicInbox::Syscall qw(:epoll);
+use PublicInbox::Syscall;
 use PublicInbox::DS;
 my $version = 2; # v2 needs newer git
 require_git('2.6') if $version >= 2;
@@ -163,7 +163,7 @@ done_testing();
 package NNTPC;
 use v5.12;
 use parent qw(PublicInbox::DS);
-use PublicInbox::Syscall qw(EPOLLIN EPOLLOUT EPOLLONESHOT);
+use PublicInbox::Syscall qw(EPOLLOUT EPOLLONESHOT);
 use Data::Dumper;
 
 # return true if complete, false if incomplete (or failure)