summaryrefslogtreecommitdiffstats
path: root/lib/vty_pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vty_pipe.c')
-rw-r--r--lib/vty_pipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vty_pipe.c b/lib/vty_pipe.c
index ad86e30c..b2c3fd64 100644
--- a/lib/vty_pipe.c
+++ b/lib/vty_pipe.c
@@ -234,7 +234,7 @@ uty_file_read_open(vty_io vio, qstring name, bool reflect)
iot = vfd_io_read | vfd_io_blocking ; /* TODO blocking */
/* Do the basic file open. */
- fd = uty_vfd_file_open(name_str, iot) ;
+ fd = uty_fd_file_open(name_str, iot) ;
if (fd < 0)
{
@@ -273,7 +273,7 @@ uty_file_write_open(vty_io vio, qstring name, bool append)
name_str = qs_make_string(name) ;
/* Do the basic file open. */
- fd = uty_vfd_file_open(name_str, iot) ;
+ fd = uty_fd_file_open(name_str, iot) ;
if (fd < 0)
{