diff options
author | marha <marha@users.sourceforge.net> | 2011-10-06 08:46:34 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-10-06 08:46:34 +0200 |
commit | b520df571e0a319eae5231d09f36b98f28b8914a (patch) | |
tree | 0c767ea54b17a7574e8650597336a1424401dffe /libXau | |
parent | f7025b4baa1ba35ee796785641f04eac5bedb0a6 (diff) | |
download | vcxsrv-b520df571e0a319eae5231d09f36b98f28b8914a.tar.gz vcxsrv-b520df571e0a319eae5231d09f36b98f28b8914a.tar.bz2 vcxsrv-b520df571e0a319eae5231d09f36b98f28b8914a.zip |
upgraded to inputproto-2.1.99.1
xwininfo fontconfig libXau mesa xkeyboard-config git update 6 oct 2011
Diffstat (limited to 'libXau')
-rw-r--r-- | libXau/AuLock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libXau/AuLock.c b/libXau/AuLock.c index 1eab79ae4..a816b2454 100644 --- a/libXau/AuLock.c +++ b/libXau/AuLock.c @@ -81,7 +81,7 @@ long dead) if (creat_fd == -1) { creat_fd = open (creat_name, O_WRONLY | O_CREAT | O_EXCL, 0600); if (creat_fd == -1) { - if (errno != EACCES) + if (errno != EACCES && errno != EEXIST) return LOCK_ERROR; } else (void) close (creat_fd); |