summaryrefslogtreecommitdiff
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 01:49:30 +0100
commita9706ba3c1e08243a761cb9c32b605e9f41535de (patch)
treea09d87fc4abf643b6bc87094a5a8208f438f3e0c
parent42f389823d972e855936c022b95d224b0232d737 (diff)
downloadsamba-a9706ba3c1e08243a761cb9c32b605e9f41535de.tar.gz
samba-a9706ba3c1e08243a761cb9c32b605e9f41535de.tar.bz2
samba-a9706ba3c1e08243a761cb9c32b605e9f41535de.zip
libreplace: add missing newline in output of getifaddrs test.
Michael (This used to be commit f8243cfc47c7414bab7f249d0e5d1c85e8ca7d64)
-rw-r--r--source4/lib/replace/test/getifaddrs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/replace/test/getifaddrs.c b/source4/lib/replace/test/getifaddrs.c
index 66eed70268..4455462193 100644
--- a/source4/lib/replace/test/getifaddrs.c
+++ b/source4/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;
}