diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/test-distrib.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib-src/test-distrib.c b/lib-src/test-distrib.c index 33dc0a46ab4..dc5adb5789c 100644 --- a/lib-src/test-distrib.c +++ b/lib-src/test-distrib.c | |||
| @@ -1,5 +1,14 @@ | |||
| 1 | #ifdef HAVE_CONFIG_H | ||
| 2 | #include <config.h> | ||
| 3 | #endif | ||
| 4 | |||
| 1 | #include <stdio.h> | 5 | #include <stdio.h> |
| 2 | 6 | ||
| 7 | #ifndef O_RDONLY | ||
| 8 | #define O_RDONLY 0 | ||
| 9 | #endif | ||
| 10 | |||
| 11 | |||
| 3 | /* Break string in two parts to avoid buggy C compilers that ignore characters | 12 | /* Break string in two parts to avoid buggy C compilers that ignore characters |
| 4 | after nulls in strings. */ | 13 | after nulls in strings. */ |
| 5 | 14 | ||
| @@ -44,7 +53,7 @@ main (argc, argv) | |||
| 44 | fprintf (stderr, "Usage: %s testfile\n", argv[0]); | 53 | fprintf (stderr, "Usage: %s testfile\n", argv[0]); |
| 45 | exit (2); | 54 | exit (2); |
| 46 | } | 55 | } |
| 47 | fd = open (argv[1], 0); | 56 | fd = open (argv[1], O_RDONLY); |
| 48 | if (fd < 0) | 57 | if (fd < 0) |
| 49 | { | 58 | { |
| 50 | perror (argv[1]); | 59 | perror (argv[1]); |