summaryrefslogtreecommitdiffstats
path: root/src/lib9/dial.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib9/dial.c')
-rw-r--r--src/lib9/dial.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib9/dial.c b/src/lib9/dial.c
index 99d37990..732cbb69 100644
--- a/src/lib9/dial.c
+++ b/src/lib9/dial.c
@@ -16,8 +16,6 @@
#include <sys/un.h>
#include <netdb.h>
-
-extern int _p9dialparse(char*, char**, char**, u32int*, int*);
#undef unix
int
@@ -41,7 +39,7 @@ p9dial(char *addr, char *dummy1, char *dummy2, int *dummy3)
if(buf == nil)
return -1;
- if(_p9dialparse(buf, &net, &unix, &host, &port) < 0){
+ if(p9dialparse(buf, &net, &unix, &host, &port) < 0){
free(buf);
return -1;
}