diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-02-13 09:13:36 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-02-13 09:13:36 +0000 |
commit | c8d2da69861cf22e740b26d81e326d1e02835d56 (patch) | |
tree | 548b75ccb1754df7371cc15cb9d7ad67b0a3e532 /libtrivfs | |
parent | f767af5ecc0a272f706c5c02e45c6c25f7a3a654 (diff) |
1999-02-12 Gordon Matzigkeit <gord@trick.fig.org>
* open.c (trivfs_open): Add missing `=' from last change.
Diffstat (limited to 'libtrivfs')
-rw-r--r-- | libtrivfs/ChangeLog | 4 | ||||
-rw-r--r-- | libtrivfs/open.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libtrivfs/ChangeLog b/libtrivfs/ChangeLog index e9e83977..be84966d 100644 --- a/libtrivfs/ChangeLog +++ b/libtrivfs/ChangeLog @@ -1,3 +1,7 @@ +1999-02-12 Gordon Matzigkeit <gord@trick.fig.org> + + * open.c (trivfs_open): Add missing `=' from last change. + 1999-02-05 Mark Kettenis <kettenis@gnu.org> * open.c (trivfs_open): Correctly initialize NEW->isroot. diff --git a/libtrivfs/open.c b/libtrivfs/open.c index f1eab14d..f64d2ffd 100644 --- a/libtrivfs/open.c +++ b/libtrivfs/open.c @@ -56,7 +56,7 @@ trivfs_open (struct trivfs_control *cntl, if (! err) { new->user = user; - new->isroot idvec_contains (user->uids, 0); + new->isroot = idvec_contains (user->uids, 0); new->po = po; new->hook = 0; |