summaryrefslogtreecommitdiff
path: root/exec
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-01-28 22:15:06 +0000
committerRoland McGrath <roland@gnu.org>1995-01-28 22:15:06 +0000
commit30a8b0dd93b24c310c9f28ac3271962bc07d054f (patch)
tree57bd89f1bb89164c5ee602c1b9f8834057de1edd /exec
parentcc1c413e5fc56546d700e9d5156f76f1ffafe216 (diff)
(prepare): Fix braino in last change.
Diffstat (limited to 'exec')
-rw-r--r--exec/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec/exec.c b/exec/exec.c
index fa04c771..ba0cfffb 100644
--- a/exec/exec.c
+++ b/exec/exec.c
@@ -680,7 +680,7 @@ prepare (file_t file, struct execdata *e)
e->stream.__userbuf = 1;
e->stream.__room_funcs.__input = input_room;
/* This never gets called, but fseek returns ESPIPE if it's null. */
- e->stream.__io_funcs.seek = __stdio_seek;
+ e->stream.__io_funcs.seek = __default_io_functions.seek;
e->stream.__io_funcs.close = close_exec_stream;
e->stream.__cookie = e;
e->stream.__seen = 1;