diff options
author | Roland McGrath <roland@gnu.org> | 1998-08-20 06:02:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-08-20 06:02:13 +0000 |
commit | 10df447e8c90f41db5ba483d24e6425042c67990 (patch) | |
tree | 77ba173a9e83a96caa7412730f09152f52a5a7f4 | |
parent | 2d3f1ca261cc86b87e69f8235853ddf60b37cc40 (diff) |
1998-08-20 Roland McGrath <roland@baalperazim.frob.com>
* fsys-options.c (diskfs_S_fsys_get_options):
fshelp_return_malloced_buffer renamed to iohelp_*.
* file-get-fs-opts.c (diskfs_S_file_get_fs_options): Likewise.
-rw-r--r-- | libdiskfs/file-get-fs-opts.c | 4 | ||||
-rw-r--r-- | libdiskfs/fsys-options.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libdiskfs/file-get-fs-opts.c b/libdiskfs/file-get-fs-opts.c index 24f2f461..9ce2eedb 100644 --- a/libdiskfs/file-get-fs-opts.c +++ b/libdiskfs/file-get-fs-opts.c @@ -1,6 +1,6 @@ /* Get run-time file system options - Copyright (C) 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -46,7 +46,7 @@ diskfs_S_file_get_fs_options (struct protid *cred, if (! err) /* Move ARGZ from a malloced buffer into a vm_alloced one. */ - err = fshelp_return_malloced_buffer (argz, argz_len, data, data_len); + err = iohelp_return_malloced_buffer (argz, argz_len, data, data_len); else free (argz); diff --git a/libdiskfs/fsys-options.c b/libdiskfs/fsys-options.c index 1a1786b9..ea5ee8c5 100644 --- a/libdiskfs/fsys-options.c +++ b/libdiskfs/fsys-options.c @@ -1,6 +1,6 @@ /* Parse run-time options - Copyright (C) 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -107,7 +107,7 @@ diskfs_S_fsys_get_options (fsys_t fsys, if (! err) /* Move ARGZ from a malloced buffer into a vm_alloced one. */ - err = fshelp_return_malloced_buffer (argz, argz_len, data, data_len); + err = iohelp_return_malloced_buffer (argz, argz_len, data, data_len); else free (argz); |