From: John David Anglin Date: Sun, 10 Aug 2014 14:00:23 +0000 (-0400) Subject: hppa: fix __O_SYNC to match the kernel X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27b390b9b65ce97b034bbfff11d2b01c3af98180;p=thirdparty%2Fglibc.git hppa: fix __O_SYNC to match the kernel --- diff --git a/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h b/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h index f596d5f1008..24b564cb0ca 100644 --- a/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h @@ -27,7 +27,7 @@ #define O_NONBLOCK 00200004 /* HPUX has separate NDELAY & NONBLOCK */ #define __O_DSYNC 01000000 #define __O_RSYNC 02000000 /* HPUX only */ -#define __O_SYNC 01000000 +#define __O_SYNC 00100000 #define O_SYNC (__O_SYNC|__O_DSYNC) #define O_BLKSEEK 00000100 /* HPUX only */