execute: fix type of open_terminal_as() flags parameter

It's the flags parameter we propagate here, not the mode parameter,
hence let's name it properly, and use the right type.
This commit is contained in:
Lennart Poettering 2017-10-27 14:32:22 +02:00
parent 9f617cd09f
commit 3a274a218d
1 changed files with 2 additions and 2 deletions

View File

@ -377,13 +377,13 @@ static int connect_logger_as(
return move_fd(fd, nfd, false);
}
static int open_terminal_as(const char *path, mode_t mode, int nfd) {
static int open_terminal_as(const char *path, int flags, int nfd) {
int fd;
assert(path);
assert(nfd >= 0);
fd = open_terminal(path, mode | O_NOCTTY);
fd = open_terminal(path, flags | O_NOCTTY);
if (fd < 0)
return fd;