diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-05-29 12:58:02 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-05-29 12:58:02 -0400 |
commit | f48832ee15027763826c8a7ff9eeed3fc06bb499 (patch) | |
tree | c22fc7561126476e81dfd1f985d4168726a8cfab /src/process/fdop.h | |
parent | dd45edb5ff6198493edf1315d3e4e6ffc7b96447 (diff) | |
download | musl-f48832ee15027763826c8a7ff9eeed3fc06bb499.tar.gz |
fix backwards posix_spawn file action order
Diffstat (limited to 'src/process/fdop.h')
-rw-r--r-- | src/process/fdop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process/fdop.h b/src/process/fdop.h index 72f9b5fe..02ff83c5 100644 --- a/src/process/fdop.h +++ b/src/process/fdop.h @@ -3,7 +3,7 @@ #define FDOP_OPEN 3 struct fdop { - struct fdop *next; + struct fdop *next, *prev; int cmd, fd, newfd, oflag; mode_t mode; char path[]; |