From ddbe673a4352625d3bb6d9b6b67b129679033df2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C5=8Dshin?= Date: Sat, 25 Dec 2021 08:41:42 +0000 Subject: [PATCH] khan: naming scheme for _khan_init_sock --- pkg/urbit/vere/io/khan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/urbit/vere/io/khan.c b/pkg/urbit/vere/io/khan.c index a2ce811a2..49480ea34 100644 --- a/pkg/urbit/vere/io/khan.c +++ b/pkg/urbit/vere/io/khan.c @@ -488,10 +488,10 @@ _khan_conn_cb(uv_stream_t* sem_u, c3_i tas_i) san_u->can_u = can_u; } -/* _khan_sock_init(): initialize socket device. +/* _khan_init_sock(): initialize socket device. */ static void -_khan_sock_init(u3_shan* san_u) +_khan_init_sock(u3_shan* san_u) { // The full socket path is limited to about 108 characters, and we want it to // be relative to the pier. So we save our current path, chdir to the pier, @@ -589,7 +589,7 @@ _khan_io_talk(u3_auto* car_u) san_u->nex_l = 1; san_u->kan_u = kan_u; kan_u->san_u = san_u; - _khan_sock_init(san_u); + _khan_init_sock(san_u); car_u->liv_o = c3y; u3l_log("khan: live on %s/%s\n", u3_Host.dir_c, URB_SOCK_PATH); }