diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-14 17:38:41 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-14 17:38:41 +0000 |
commit | e3ade3ccb564dc3d252c4c79666733aa950680fb (patch) | |
tree | 53018a67302b63a5b6e02452b461b02c75aabc3e | |
parent | 71afe05b9fd9b5bc4a9f8176df8c0a7f867ab748 (diff) | |
download | curl-e3ade3ccb564dc3d252c4c79666733aa950680fb.tar.gz |
Oops, missing argument separator comma
-rw-r--r-- | ares/ares_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/ares_init.c b/ares/ares_init.c index 1ca835e6d..b0fa50f2b 100644 --- a/ares/ares_init.c +++ b/ares/ares_init.c @@ -689,7 +689,7 @@ DhcpNameServer status = ARES_EOF; break; default: - DEBUGF(fprintf(stderr, "fopen() failed with error: %d %s\n" + DEBUGF(fprintf(stderr, "fopen() failed with error: %d %s\n", errno, strerror(errno))); DEBUGF(fprintf(stderr, "Error opening file: %s\n", "/etc/host.conf")); status = ARES_EFILE; |