about summary refs log tree commit diff
path: root/io/bug-ftw3.c
blob: 98bb563f0c860829e2b961d478e52ce4ea39a824 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <errno.h>
#include <ftw.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

static int
cb (const char *fname, const struct stat *st, int flag)
{
  printf ("%s %d\n", fname, flag);
  return 0;
}

int
main (void)
{
  char tmp[] = "/tmp/ftwXXXXXX";
  char *dname;
  int r;
  int e;

  dname = mkdtemp (tmp);
  if (dname == NULL)
    {
      printf ("mkdtemp: %m\n");
      exit (1);
    }

  if (chmod (dname, S_IWUSR|S_IXUSR|S_IWGRP|S_IXGRP|S_IWOTH|S_IXOTH) != 0)
    {
      printf ("chmod: %m\n");
      exit (1);
    }

  r = ftw (dname, cb, 10);
  e = errno;
  printf ("r = %d", r);
  if (r != 0)
    printf (", errno = %d", errno);
  puts ("");

  chmod (dname, S_IRWXU|S_IRWXG|S_IRWXO);
  rmdir (dname);

  return r != -1 && e == EACCES;
}