summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-06-20 05:20:05 +0000
committerMiles Bader <miles@gnu.org>1997-06-20 05:20:05 +0000
commite79e3c08a4267eb1d8a8f060c44b6a2673b29fb6 (patch)
tree7c9cf39d331be252b53f06a40987eed9d1ee5638
parent28db09d5b511b19901f8029254e0166c88183922 (diff)
Update FSF address.
-rw-r--r--libstore/encode.c6
-rw-r--r--libstore/set.c9
2 files changed, 6 insertions, 9 deletions
diff --git a/libstore/encode.c b/libstore/encode.c
index 0a9e793f..d8bbcd5f 100644
--- a/libstore/encode.c
+++ b/libstore/encode.c
@@ -1,9 +1,7 @@
/* Store wire encoding
- Copyright (C) 1996 Free Software Foundation, Inc.
-
+ Copyright (C) 1996, 1997 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.edu>
-
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or
@@ -18,7 +16,7 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
#include <string.h>
diff --git a/libstore/set.c b/libstore/set.c
index 479184d4..ab9747ff 100644
--- a/libstore/set.c
+++ b/libstore/set.c
@@ -1,9 +1,7 @@
/* Setting various store fields
- Copyright (C) 1995, 1996 Free Software Foundation, Inc.
-
+ Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.edu>
-
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or
@@ -18,7 +16,7 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
#include <malloc.h>
#include <string.h>
@@ -27,7 +25,8 @@
/* Set STORE's current runs list to (a copy of) RUNS and NUM_RUNS. */
error_t
-store_set_runs (struct store *store, const struct store_run *runs, unsigned num_runs)
+store_set_runs (struct store *store,
+ const struct store_run *runs, unsigned num_runs)
{
unsigned size = num_runs * sizeof (struct store_run);
struct store_run *copy = malloc (size);