1ce9e1307943780b4777ef62e440b0dbab00d008
[gentoo.git] /
1 From 804a9b4f57107fa2d0ed1ae0becda5bebaffe6e1 Mon Sep 17 00:00:00 2001
2 From: Eric Anholt <eric@anholt.net>
3 Date: Wed, 19 Sep 2018 13:20:12 -0700
4 Subject: [PATCH xserver] shm: reindent shm_tmpfile to follow our standards.
5
6 Signed-off-by: Eric Anholt <eric@anholt.net>
7 ---
8  Xext/shm.c | 40 ++++++++++++++++++++--------------------
9  1 file changed, 20 insertions(+), 20 deletions(-)
10
11 diff --git a/Xext/shm.c b/Xext/shm.c
12 index 589ed0b4d..ed43b9202 100644
13 --- a/Xext/shm.c
14 +++ b/Xext/shm.c
15 @@ -1195,34 +1195,34 @@ static int
16  shm_tmpfile(void)
17  {
18  #ifdef SHMDIR
19 -       int     fd;
20 -       char    template[] = SHMDIR "/shmfd-XXXXXX";
21 +    int        fd;
22 +    char       template[] = SHMDIR "/shmfd-XXXXXX";
23  #ifdef O_TMPFILE
24 -       fd = open(SHMDIR, O_TMPFILE|O_RDWR|O_CLOEXEC|O_EXCL, 0666);
25 -       if (fd >= 0) {
26 -               DebugF ("Using O_TMPFILE\n");
27 -               return fd;
28 -       }
29 -       ErrorF ("Not using O_TMPFILE\n");
30 +    fd = open(SHMDIR, O_TMPFILE|O_RDWR|O_CLOEXEC|O_EXCL, 0666);
31 +    if (fd >= 0) {
32 +        DebugF ("Using O_TMPFILE\n");
33 +        return fd;
34 +    }
35 +    ErrorF ("Not using O_TMPFILE\n");
36  #endif
37  #ifdef HAVE_MKOSTEMP
38 -       fd = mkostemp(template, O_CLOEXEC);
39 +    fd = mkostemp(template, O_CLOEXEC);
40  #else
41 -       fd = mkstemp(template);
42 +    fd = mkstemp(template);
43  #endif
44 -       if (fd < 0)
45 -               return -1;
46 -       unlink(template);
47 +    if (fd < 0)
48 +        return -1;
49 +    unlink(template);
50  #ifndef HAVE_MKOSTEMP
51 -       int flags = fcntl(fd, F_GETFD);
52 -       if (flags != -1) {
53 -               flags |= FD_CLOEXEC;
54 -               (void) fcntl(fd, F_SETFD, &flags);
55 -       }
56 +    int flags = fcntl(fd, F_GETFD);
57 +    if (flags != -1) {
58 +        flags |= FD_CLOEXEC;
59 +        (void) fcntl(fd, F_SETFD, &flags);
60 +    }
61  #endif
62 -       return fd;
63 +    return fd;
64  #else
65 -        return -1;
66 +    return -1;
67  #endif
68  }
69  
70 -- 
71 2.19.2
72