aboutsummaryrefslogtreecommitdiff
path: root/dpi/file.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/file.c
parent362a3b67783e84a68d1e778b2d6df025d056833c (diff)
Ensure that the dlib dStr* functions are used everywhere.
Diffstat (limited to 'dpi/file.c')
-rw-r--r--dpi/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dpi/file.c b/dpi/file.c
index a3cfccaa..aef593f7 100644
--- a/dpi/file.c
+++ b/dpi/file.c
@@ -673,7 +673,7 @@ static int File_get_file(ClientInfo *Client,
* calling exit() */
if (st == -1) {
MSG("ERROR while reading from file \"%s\", error was \"%s\"\n",
- filename, strerror(errno));
+ filename, dStrerror(errno));
exit(1);
}