diff options
author | Björn Jacke <bj@sernet.de> | 2009-12-13 21:56:28 +0100 |
---|---|---|
committer | Björn Jacke <bj@sernet.de> | 2010-01-06 18:28:16 +0100 |
commit | 350db0bf2548bd670ebff4587580ba9ca9212ac8 (patch) | |
tree | 79ed392816cb1b3a8662bcea163af958d7d21439 /source3 | |
parent | c01f443ebca5e0b6f65fe8b3ab031da51dce2e89 (diff) | |
download | samba-350db0bf2548bd670ebff4587580ba9ca9212ac8.tar.gz samba-350db0bf2548bd670ebff4587580ba9ca9212ac8.tar.bz2 samba-350db0bf2548bd670ebff4587580ba9ca9212ac8.zip |
vfs_commit: print warning when no fsync support is there
this one was part of an old patch from jpeach.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/vfs_commit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/modules/vfs_commit.c b/source3/modules/vfs_commit.c index 1d099494e9..cade1170ba 100644 --- a/source3/modules/vfs_commit.c +++ b/source3/modules/vfs_commit.c @@ -88,6 +88,8 @@ static int commit_do( #elif HAVE_FSYNC result = fsync(fd); #else + DEBUG(0, ("%s: WARNING: no commit support on this platform\n", + MODULE)); result = 0 #endif if (result == 0) { |