summaryrefslogtreecommitdiff
path: root/source4/lib/replace/inet_ntoa.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-03-18 13:10:22 +0100
committerMichael Adam <obnox@samba.org>2008-03-18 16:30:15 +0100
commit4500b95c89b6b692bd2842e902367663ac2351ba (patch)
treea3ac3b865029a21a15971a917229018038867be0 /source4/lib/replace/inet_ntoa.c
parent87b48a812683794935db950446e9fb1db8e3da48 (diff)
downloadsamba-4500b95c89b6b692bd2842e902367663ac2351ba.tar.gz
samba-4500b95c89b6b692bd2842e902367663ac2351ba.tar.bz2
samba-4500b95c89b6b692bd2842e902367663ac2351ba.zip
libreplace: remove trailing white spaces.
Michael (This used to be commit 1f9ca7eed965904f67cf78fbac007432b8a057fd)
Diffstat (limited to 'source4/lib/replace/inet_ntoa.c')
-rw-r--r--source4/lib/replace/inet_ntoa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/replace/inet_ntoa.c b/source4/lib/replace/inet_ntoa.c
index f3e733fa61..e3b80ebef8 100644
--- a/source4/lib/replace/inet_ntoa.c
+++ b/source4/lib/replace/inet_ntoa.c
@@ -33,7 +33,7 @@ char *rep_inet_ntoa(struct in_addr ip)
{
uint8_t *p = (uint8_t *)&ip.s_addr;
static char buf[18];
- slprintf(buf, 17, "%d.%d.%d.%d",
+ slprintf(buf, 17, "%d.%d.%d.%d",
(int)p[0], (int)p[1], (int)p[2], (int)p[3]);
return buf;
}