summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2006-03-08 08:12:44 +0000
committerLudovic Courtès <ludo@gnu.org>2006-03-08 08:12:44 +0000
commit482b4ca7291b1b66019392bda25f20ebed2a81e5 (patch)
treebe75bdde4a89fd90809273cd9d25db985e264b36
parentb7887d7799ec81cf04ab649bc808a1703db212a4 (diff)
Updated my email address (Ludovic).
-rw-r--r--Makefile2
-rw-r--r--README5
-rw-r--r--backend.h2
-rw-r--r--cache.c2
-rw-r--r--cache.h2
-rw-r--r--debug.c2
-rw-r--r--debug.h2
-rw-r--r--fs.c2
-rw-r--r--fs.h2
-rw-r--r--main.c2
-rw-r--r--netfs.c2
-rw-r--r--store-bzip2.c2
-rw-r--r--store-gzip.c2
-rw-r--r--tarfs.c4
-rw-r--r--tarfs.h2
-rw-r--r--tarlist.c2
-rw-r--r--zipstores.c2
-rw-r--r--zipstores.h2
18 files changed, 21 insertions, 20 deletions
diff --git a/Makefile b/Makefile
index 311fd709e..5ea81001f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
# Makefile for the Hurd Tarfs translator.
-# Copyright (C) 2002, 2003 Ludovic Courtès <ludo@type-z.org>
+# Copyright (C) 2002, 2003 Ludovic Courtès <ludo@chbouib.org>
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
diff --git a/README b/README
index 728cc49b7..5ff3b4b35 100644
--- a/README
+++ b/README
@@ -63,5 +63,6 @@ a tarfs that shows you only the files that belong to you (looking at your list
of effective user ids). :)
-<ludo@type-z.org> http://people.type-z.org/ludo/hurd/
-<ludovic.courtes@utbm.fr>
+Ludovic Courtès.
+<ludo@chbouib.org> <ludovic.courtes@laas.fr>
+
diff --git a/backend.h b/backend.h
index ab8f92f9c..82bbee77b 100644
--- a/backend.h
+++ b/backend.h
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/cache.c b/cache.c
index 1e4e78458..685e0ea04 100644
--- a/cache.c
+++ b/cache.c
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/cache.h b/cache.h
index 2ec926b76..781f2cb52 100644
--- a/cache.h
+++ b/cache.h
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/debug.c b/debug.c
index f406b4308..ed839501b 100644
--- a/debug.c
+++ b/debug.c
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/debug.h b/debug.h
index c65a46478..0169a625b 100644
--- a/debug.h
+++ b/debug.h
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/fs.c b/fs.c
index 84d7905b2..d508b9050 100644
--- a/fs.c
+++ b/fs.c
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/fs.h b/fs.h
index 1f448e5f4..34bcd40c4 100644
--- a/fs.h
+++ b/fs.h
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/main.c b/main.c
index 91b1fcbc4..68268013f 100644
--- a/main.c
+++ b/main.c
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/netfs.c b/netfs.c
index 97653efbf..30ab25df9 100644
--- a/netfs.c
+++ b/netfs.c
@@ -1,5 +1,5 @@
/* tarfs interface to libnetfs.
- Copyright (C) 2002 Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002 Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/store-bzip2.c b/store-bzip2.c
index 879145e3c..21222a5a5 100644
--- a/store-bzip2.c
+++ b/store-bzip2.c
@@ -1,7 +1,7 @@
/* Gzip store backend.
Copyright (C) 1995,96,97,99,2000,01, 02 Free Software Foundation, Inc.
- Written by Ludovic Courtes <ludo@type-z.org>
+ Written by Ludovic Courtes <ludo@chbouib.org>
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or
diff --git a/store-gzip.c b/store-gzip.c
index 8f4896743..2554da5a6 100644
--- a/store-gzip.c
+++ b/store-gzip.c
@@ -1,7 +1,7 @@
/* Gzip store backend.
Copyright (C) 1995,96,97,99,2000,01, 02 Free Software Foundation, Inc.
- Written by Ludovic Courtes <ludovic.courtes@utbm.fr>
+ Written by Ludovic Courtes <ludo@chbouib.org>
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or
diff --git a/tarfs.c b/tarfs.c
index fbca8e8af..af282f5f0 100644
--- a/tarfs.c
+++ b/tarfs.c
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, 2003 Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, 2003 Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -47,7 +47,7 @@ const char *argp_program_version =
"tarfs(rw-alpha) for the GNU Hurd (compiled: " __DATE__ ")";
/* Argp data */
-const char *argp_program_bug_address = "Ludovic Courtès <ludo@type-z.org>";
+const char *argp_program_bug_address = "Ludovic Courtès <ludo@chbouib.org>";
const char *args_doc = "ARCHIVE";
const char *doc = "Hurd tar filesystem:\n"
"parses a tar archive and creates the corresponding filesystem\n";
diff --git a/tarfs.h b/tarfs.h
index 9ccf07119..9e3923999 100644
--- a/tarfs.h
+++ b/tarfs.h
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, 2003 Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, 2003 Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/tarlist.c b/tarlist.c
index 917efdcb9..22cabc7fd 100644
--- a/tarlist.c
+++ b/tarlist.c
@@ -1,5 +1,5 @@
/* tarfs - A GNU tar filesystem for the Hurd.
- Copyright (C) 2002, Ludovic Courtès <ludo@type-z.org>
+ Copyright (C) 2002, Ludovic Courtès <ludo@chbouib.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
diff --git a/zipstores.c b/zipstores.c
index e0f1d83ae..f495938dc 100644
--- a/zipstores.c
+++ b/zipstores.c
@@ -1,7 +1,7 @@
/* Compression store backend.
Copyright (C) 1995,96,97,99,2000,01, 02 Free Software Foundation, Inc.
- Written by Ludovic Courtes <ludovic.courtes@utbm.fr>
+ Written by Ludovic Courtes <ludo@chbouib.org>
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or
diff --git a/zipstores.h b/zipstores.h
index c8a2e318d..e48cbd9e0 100644
--- a/zipstores.h
+++ b/zipstores.h
@@ -1,7 +1,7 @@
/* Gzip/Bzip2 store backends.
Copyright (C) 1995,96,97,99,2000,01, 02 Free Software Foundation, Inc.
- Written by Ludovic Courtes <ludo@type-z.org>
+ Written by Ludovic Courtes <ludo@chbouib.org>
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or