diff options
author | Roland McGrath <roland@gnu.org> | 2001-10-14 21:11:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-10-14 21:11:09 +0000 |
commit | 2b89b8557c47d496587edb991bfad1c268e7959d (patch) | |
tree | 40763ceca0d621d243472e4341ba187a1591ed37 /libstore | |
parent | f2d97a758829d6a043c9a82db62a5da78a8844c3 (diff) |
Fix typo in copyright.
Diffstat (limited to 'libstore')
-rw-r--r-- | libstore/copy.c | 2 | ||||
-rw-r--r-- | libstore/map.c | 10 | ||||
-rw-r--r-- | libstore/part.c | 3 | ||||
-rw-r--r-- | libstore/typed.c | 10 |
4 files changed, 12 insertions, 13 deletions
diff --git a/libstore/copy.c b/libstore/copy.c index 77b857ed..a984fbd2 100644 --- a/libstore/copy.c +++ b/libstore/copy.c @@ -3,7 +3,7 @@ Copyright (C) 1995,96,97,99,2000,01 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.org> - This task is part of the GNU Hurd. + This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/libstore/map.c b/libstore/map.c index 4ac8ce98..b7533cbb 100644 --- a/libstore/map.c +++ b/libstore/map.c @@ -1,8 +1,9 @@ /* Direct store mapping Copyright (C) 1997 Free Software Foundation, Inc. - Written by Miles Bader <miles@gnu.ai.mit.edu> - This task is part of the GNU Hurd. + Written by Miles Bader <miles@gnu.org> + + This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -27,8 +28,9 @@ fail because store contains non-contiguous regions on the underlying object. In such a case you can try calling some of the routines below to get a pager. */ -error_t store_map (const struct store *store, vm_prot_t prot, - mach_port_t *memobj) +error_t +store_map (const struct store *store, vm_prot_t prot, + mach_port_t *memobj) { error_t (*map) (const struct store *store, vm_prot_t prot, mach_port_t *memobj) = diff --git a/libstore/part.c b/libstore/part.c index 7df62f0a..de809fc0 100644 --- a/libstore/part.c +++ b/libstore/part.c @@ -1,9 +1,8 @@ /* Partition store backend Copyright (C) 2001 Free Software Foundation, Inc. - Written by Neal H Walfield <neal@cs.uml.edu> - This task is part of the GNU Hurd. + This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/libstore/typed.c b/libstore/typed.c index d3c58ba4..48dbb6b9 100644 --- a/libstore/typed.c +++ b/libstore/typed.c @@ -1,10 +1,9 @@ /* Support for opening `typed' stores - Copyright (C) 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1997,98,2001 Free Software Foundation, Inc. + Written by Miles Bader <miles@gnu.org> - Written by Miles Bader <miles@gnu.ai.mit.edu> - - This task is part of the GNU Hurd. + This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -20,9 +19,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ -#include <string.h> - #include "store.h" +#include <string.h> /* Open the store indicated by NAME, which should consist of a store type name followed by a ':' and any type-specific name, returning the new store |