[PATCH] Add missing commas

Ralph Böhme rb at sernet.de
Fri Jan 16 02:42:25 MST 2015


Hi,

simple fix for lib/util/wscript_configure attached. Exploded on
Solaris when trying to build with _XOPEN_SOURCE=600 and
__EXTENSIONS__.

Please review and push if ok.

-Ralph

-- 
SerNet GmbH, Bahnhofsallee 1b, 37081 Göttingen
phone: +49-551-370000-0, fax: +49-551-370000-9
AG Göttingen, HRB 2816, GF: Dr. Johannes Loxen
http://www.sernet.de,mailto:kontakt@sernet.de
-------------- next part --------------
From 6130d855d0c27d30f5692a0a9db86b26f2c8e188 Mon Sep 17 00:00:00 2001
From: Ralph Boehme <slow at samba.org>
Date: Thu, 15 Jan 2015 21:08:47 +0100
Subject: [PATCH] lib/util: add missing commas to statfs_types

Signed-off-by: Ralph Boehme <slow at samba.org>
---
 lib/util/wscript_configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/util/wscript_configure b/lib/util/wscript_configure
index 1270ab3..bf017a5 100644
--- a/lib/util/wscript_configure
+++ b/lib/util/wscript_configure
@@ -20,7 +20,7 @@ statfs_types = [
 
     ( 'STAT_STATFS3_OSF1',
       '3-argument statfs function (DEC OSF/1)',
-      'struct statfs fsd; fsd.f_fsize = 0; exit(statfs(".", &fsd, sizeof(struct statfs)))'
+      'struct statfs fsd; fsd.f_fsize = 0; exit(statfs(".", &fsd, sizeof(struct statfs)))',
       'sys/param.h sys/mount.h' ),
 
     ( 'STAT_STATFS2_BSIZE',
@@ -35,7 +35,7 @@ statfs_types = [
 
     ( 'STAT_STATFS2_FSIZE',
       'two-argument statfs with statfs.fsize',
-      'struct statfs fsd; fsd.f_fsize = 0; exit(statfs(".", &fsd))'
+      'struct statfs fsd; fsd.f_fsize = 0; exit(statfs(".", &fsd))',
       'sys/param.h sys/mount.h' ),
 
     ( 'STAT_STATFS2_FS_DATA',
-- 
1.9.3



More information about the samba-technical mailing list