diff options
| author | Chris Rankin <rankincj@yahoo.com> | 2011-10-03 12:11:56 +0100 |
|---|---|---|
| committer | Chris Rankin <rankincj@yahoo.com> | 2011-10-03 12:11:56 +0100 |
| commit | 5db268a002e7a102855e84a3ff5e1c27ca7cb927 (patch) | |
| tree | b97f50441023384ff052e4daa64a2086fc44b47d /src/input/input_file.c | |
| parent | 5ec743f4ddf302d10b3547cfc18ae0ca8aed1edd (diff) | |
| download | xine-lib-5db268a002e7a102855e84a3ff5e1c27ca7cb927.tar.gz xine-lib-5db268a002e7a102855e84a3ff5e1c27ca7cb927.tar.bz2 | |
Prefix open_cloexec() and create_cloexec() with xine_, and add new xine_socket_cloexec() function.
Diffstat (limited to 'src/input/input_file.c')
| -rw-r--r-- | src/input/input_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_file.c b/src/input/input_file.c index b8d2b12b7..d5313d4dc 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -362,7 +362,7 @@ static int file_plugin_open (input_plugin_t *this_gen ) { else filename = strdup(this->mrl); /* NEVER unescape plain file names! */ - this->fh = open_cloexec(filename, O_RDONLY|O_BINARY); + this->fh = xine_open_cloexec(filename, O_RDONLY|O_BINARY); if (this->fh == -1) { if (errno == EACCES) { |
