summaryrefslogtreecommitdiff
path: root/cmd/sbc_harness/main.c
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-20 19:11:49 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-03-23 03:04:56 -0600
commit1e49f931a86e54415ba36fc2bfe799d616936080 (patch)
tree13d55c71ed95743dd7ab1892c2627e482b7fa4d3 /cmd/sbc_harness/main.c
parentb3d946854132788fcabd9b9812c7b2571b9b8cba (diff)
lib9p has no CONFIG_9P_PORT configure knob, remove it from config.h
Diffstat (limited to 'cmd/sbc_harness/main.c')
-rw-r--r--cmd/sbc_harness/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/sbc_harness/main.c b/cmd/sbc_harness/main.c
index c932ec0..2b2b3f8 100644
--- a/cmd/sbc_harness/main.c
+++ b/cmd/sbc_harness/main.c
@@ -139,7 +139,7 @@ static COROUTINE read9p_cr(void *) {
cr_begin();
lo_interface net_iface iface = lo_box_w5500_if_as_net_iface(&globals.dev_w5500);
- lo_interface net_stream_listener listener = LO_CALL(iface, tcp_listen, CONFIG_9P_PORT);
+ lo_interface net_stream_listener listener = LO_CALL(iface, tcp_listen, LIB9P_DEFAULT_PORT_9FS);
lib9p_srv_read_cr(&globals.srv, listener);