summaryrefslogtreecommitdiff
path: root/lib/replace
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-10-30 17:43:48 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-10-30 16:32:15 +0000
commit4dee76f1cd1364718ba385121c00b8b8eb1c917e (patch)
tree589015c214fcdb28572cfb4be09ed2a8ead96128 /lib/replace
parent7fc0aaba4b7383973bbc2e80addea11658d48fbf (diff)
downloadsamba-4dee76f1cd1364718ba385121c00b8b8eb1c917e.tar.gz
samba-4dee76f1cd1364718ba385121c00b8b8eb1c917e.tar.bz2
samba-4dee76f1cd1364718ba385121c00b8b8eb1c917e.zip
replace: Fix formatting.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Oct 30 16:32:15 UTC 2010 on sn-devel-104
Diffstat (limited to 'lib/replace')
-rw-r--r--lib/replace/wscript16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript
index b2fe5bc2de..da788a114c 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -133,7 +133,7 @@ def configure(conf):
int s = socket(AF_INET6, SOCK_STREAM, 0);
int ret = getaddrinfo(NULL, NULL, NULL, &ai);
if (ret != 0) {
- const char *es = gai_strerror(ret);
+ const char *es = gai_strerror(ret);
}
freeaddrinfo(ai);
{
@@ -226,7 +226,7 @@ def configure(conf):
conf.DEFINE('HAVE_EPOLL', 1)
if not conf.CHECK_CODE('''#define LIBREPLACE_CONFIGURE_TEST_STRPTIME
- #include "test/strptime.c"''',
+ #include "test/strptime.c"''',
define='HAVE_STRPTIME',
addmain=False,
msg='Checking for working strptime'):
@@ -270,7 +270,7 @@ def configure(conf):
conf.SAMBA_BUILD_ENV()
conf.CHECK_CODE('''
- typedef struct {unsigned x;} FOOBAR;
+ typedef struct {unsigned x;} FOOBAR;
#define X_FOOBAR(x) ((FOOBAR) { x })
#define FOO_ONE X_FOOBAR(1)
FOOBAR f = FOO_ONE;
@@ -401,11 +401,11 @@ def build(bld):
bld.SAMBA_LIBRARY('replace',
source=REPLACE_SOURCE,
group='base_libraries',
- # FIXME: Ideally symbols should be hidden here so they
- # don't appear in the global namespace when Samba
- # libraries are loaded, but this doesn't appear to work
- # at the moment:
- # hide_symbols=bld.BUILTIN_LIBRARY('replace'),
+ # FIXME: Ideally symbols should be hidden here so they
+ # don't appear in the global namespace when Samba
+ # libraries are loaded, but this doesn't appear to work
+ # at the moment:
+ # hide_symbols=bld.BUILTIN_LIBRARY('replace'),
private_library=True,
deps='crypt dl nsl socket rt')