aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-09-05 08:51:12 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-09-05 08:51:12 +0800
commitd368a71398e7a6c4e3faa9489a75ef1dbdc87a87 (patch)
treeef8eb7556fa06a79d5ec55b0933f8dce3a132f79
parent6ffca132c181efa2a05fe3e0e954a430f4072a13 (diff)
nat: Use ':' to separate the message and strerror
-rw-r--r--openbsc/src/nat/bsc_nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/nat/bsc_nat.c b/openbsc/src/nat/bsc_nat.c
index 411782c58..a4c2d69a4 100644
--- a/openbsc/src/nat/bsc_nat.c
+++ b/openbsc/src/nat/bsc_nat.c
@@ -967,7 +967,7 @@ static int listen_for_bsc(struct bsc_fd *bfd, struct in_addr *in_addr, int port)
ret = bind(bfd->fd, (struct sockaddr *) &addr, sizeof(addr));
if (ret < 0) {
- fprintf(stderr, "Could not bind the BSC socket %s\n",
+ fprintf(stderr, "Could not bind the BSC socket: %s\n",
strerror(errno));
return -EIO;
}