summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-02-29 01:49:30 +0100
committerMichael Adam <obnox@samba.org>2008-02-29 09:31:39 +0100
commit3be85e76a82c4d67a66e2c6e86a7a9d5c394815f (patch)
treea6154dc1b0d858423d854ed33e6ba32993d4ab9e /source3
parent539c4df84b21b6c45a91bd0b83c6e387b0829858 (diff)
downloadsamba-3be85e76a82c4d67a66e2c6e86a7a9d5c394815f.tar.gz
samba-3be85e76a82c4d67a66e2c6e86a7a9d5c394815f.tar.bz2
samba-3be85e76a82c4d67a66e2c6e86a7a9d5c394815f.zip
libreplace: add missing newline in output of getifaddrs test.
Michael (cherry picked from commit f8243cfc47c7414bab7f249d0e5d1c85e8ca7d64) (This used to be commit 3c1843f931b896dd3bb142346ecb44c0fb9202d6)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/replace/test/getifaddrs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/replace/test/getifaddrs.c b/source3/lib/replace/test/getifaddrs.c
index 66eed70268..4455462193 100644
--- a/source3/lib/replace/test/getifaddrs.c
+++ b/source3/lib/replace/test/getifaddrs.c
@@ -55,7 +55,7 @@ int getifaddrs_test(void)
ret = getifaddrs(&ifs);
if (ret != 0) {
- fprintf(stderr, "getifaddrs() failed: %s", strerror(errno));
+ fprintf(stderr, "getifaddrs() failed: %s\n", strerror(errno));
return 1;
}