summaryrefslogtreecommitdiff
path: root/dpi/ftp.c
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2009-01-02 19:18:06 -0300
committerJorge Arellano Cid <jcid@dillo.org>2009-01-02 19:18:06 -0300
commit58e0045791b62f309066e446a314cd26bc277a8b (patch)
treed2859f473387d716e98faee8c5f72817ca284712 /dpi/ftp.c
parent362a3b67783e84a68d1e778b2d6df025d056833c (diff)
Ensure that the dlib dStr* functions are used everywhere.
Diffstat (limited to 'dpi/ftp.c')
-rw-r--r--dpi/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dpi/ftp.c b/dpi/ftp.c
index 139444c9..666a6761 100644
--- a/dpi/ftp.c
+++ b/dpi/ftp.c
@@ -187,7 +187,7 @@ static int try_ftp_transfer(char *url)
int DataPipe[2];
if (pipe(DataPipe) < 0) {
- MSG("pipe, %s\n", strerror(errno));
+ MSG("pipe, %s\n", dStrerror(errno));
return 0;
}