diff options
| author | Jim Meyering <jim@meyering.net> | 2004-06-08 06:47:43 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 2004-06-08 06:47:43 +0000 |
| commit | 62d6b980b27e15d7013aa24a0a1b89039ba2fe8e (patch) | |
| tree | 2cfb0ef33489b9c31839a1ee7045fea722825768 /src | |
| parent | *** empty log message *** (diff) | |
| download | coreutils-62d6b980b27e15d7013aa24a0a1b89039ba2fe8e.tar.gz coreutils-62d6b980b27e15d7013aa24a0a1b89039ba2fe8e.zip | |
(direct_mode): Turn it on/off with directio, too.
Diffstat (limited to 'src')
| -rw-r--r-- | src/shred.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shred.c b/src/shred.c index 44be403f5..92962b9ed 100644 --- a/src/shred.c +++ b/src/shred.c @@ -828,10 +828,10 @@ direct_mode (int fd, bool enable) } } -#if HAVE_DIRECTIO && defined DIRECTIO_ON +#if HAVE_DIRECTIO && defined DIRECTIO_ON && defined DIRECTIO_OFF /* This is Solaris-specific. See the following for details: http://docs.sun.com/db/doc/816-0213/6m6ne37so?q=directio&a=view */ - directio (fd, DIRECTIO_ON); + directio (fd, enable ? DIRECTIO_ON : DIRECTIO_OFF); #endif } |
