summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Pool <mbp@sourcefrog.net>2014-10-12 09:09:21 -0700
committerMartin Pool <mbp@sourcefrog.net>2014-10-12 09:09:21 -0700
commit13e2039645aaf6ba25196e336806a426323e95dc (patch)
tree13b41d07752231dd963c1af8b0cdd20f9dc44688
parentf92e03a3566b4a8ec41f5ded48c43cd7863875e9 (diff)
downloadlibrsync-13e2039645aaf6ba25196e336806a426323e95dc.tar.gz
Update my email address
-rw-r--r--AUTHORS2
-rw-r--r--PCbuild/librsync-config.h2
-rw-r--r--base64.c2
-rw-r--r--buf.c2
-rw-r--r--buf.h2
-rw-r--r--checksum.c2
-rw-r--r--checksum.h2
-rw-r--r--command.c2
-rw-r--r--command.h2
-rw-r--r--debian/copyright2
-rw-r--r--delta.c2
-rw-r--r--doc/codeheader.c2
-rw-r--r--doc/codeheader.sh2
-rw-r--r--doc/gloss.dox2
-rw-r--r--doc/librsync.34
-rw-r--r--doc/main.dox2
-rw-r--r--doc/rdiff.12
-rw-r--r--emit.c2
-rw-r--r--emit.h2
-rw-r--r--fileutil.c2
-rw-r--r--fileutil.h2
-rw-r--r--hex.c2
-rw-r--r--isprefix.c2
-rw-r--r--isprefix.h2
-rw-r--r--job.c2
-rw-r--r--job.h2
-rw-r--r--librsync-config.h.in2
-rw-r--r--librsync.h4
-rw-r--r--mdfour.c2
-rw-r--r--mdfour.h2
-rwxr-xr-xmkprototab.pl2
-rw-r--r--mksum.c2
-rw-r--r--msg.c2
-rw-r--r--netint.c2
-rw-r--r--netint.h2
-rw-r--r--patch.c2
-rw-r--r--protocol.h2
-rw-r--r--rdiff.c2
-rw-r--r--readsums.c2
-rw-r--r--rollsum.c2
-rw-r--r--rollsum.h2
-rw-r--r--scoop.c2
-rw-r--r--search.c2
-rw-r--r--search.h2
-rw-r--r--stats.c2
-rw-r--r--stream.c2
-rw-r--r--stream.h2
-rw-r--r--sumset.c2
-rw-r--r--sumset.h2
-rwxr-xr-xtestsuite/changes.test2
-rw-r--r--testsuite/delta.test2
-rw-r--r--testsuite/isprefix.driver.c2
-rwxr-xr-xtestsuite/mksum.test2
-rw-r--r--testsuite/mutate.pl2
-rwxr-xr-xtestsuite/mutate.test2
-rwxr-xr-xtestsuite/signature.test2
-rwxr-xr-xtestsuite/sources.test2
-rwxr-xr-xtestsuite/triple.test2
-rw-r--r--trace.c2
-rw-r--r--trace.h2
-rw-r--r--tube.c2
-rw-r--r--types.h2
-rw-r--r--util.c2
-rw-r--r--util.h2
-rw-r--r--version.c2
-rw-r--r--whole.c2
-rw-r--r--whole.h2
67 files changed, 69 insertions, 69 deletions
diff --git a/AUTHORS b/AUTHORS
index d02d422..b4425dd 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,3 +1,3 @@
-Martin Pool <mbp@samba.org>
+Martin Pool <mbp@sourcefrog.net>
Andrew Tridgell <tridge@samba.org>
Donovan Baarda <abo@minkirri.apana.org.au>
diff --git a/PCbuild/librsync-config.h b/PCbuild/librsync-config.h
index 1fcb762..88da416 100644
--- a/PCbuild/librsync-config.h
+++ b/PCbuild/librsync-config.h
@@ -2,7 +2,7 @@
*
* librsync -- library for network deltas
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/base64.c b/base64.c
index 11f07fd..d29af49 100644
--- a/base64.c
+++ b/base64.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/buf.c b/buf.c
index 67a456b..961fa04 100644
--- a/buf.c
+++ b/buf.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/buf.h b/buf.h
index cb8386e..ba68cb6 100644
--- a/buf.h
+++ b/buf.h
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/checksum.c b/checksum.c
index 2776ea9..0097b83 100644
--- a/checksum.c
+++ b/checksum.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1996 by Andrew Tridgell
* Copyright (C) 1996 by Paul Mackerras
*
diff --git a/checksum.h b/checksum.h
index b9fe543..5401e98 100644
--- a/checksum.h
+++ b/checksum.h
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/command.c b/command.c
index 2f6c495..4e74b7c 100644
--- a/command.c
+++ b/command.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/command.h b/command.h
index 43da19d..00207f5 100644
--- a/command.h
+++ b/command.h
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
*
* This program is free software; you can redistribute it and/or
diff --git a/debian/copyright b/debian/copyright
index e2d5db3..aad46f9 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -8,7 +8,7 @@ It was downloaded from http://prdownloads.sourceforge.net/rproxy/
0.9.5.1 was found at http://rdiff-backup.stanford.edu/ -- it looks like new
versions might appear there.
-Upstream Author(s): Martin Pool <mbp@samba.org>
+Upstream Author(s): Martin Pool <mbp@sourcefrog.net>
Andrew Tridgell <tridge@samba.org>
diff --git a/delta.c b/delta.c
index 453bd6d..240c96e 100644
--- a/delta.c
+++ b/delta.c
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 2003 by Donovan Baarda <abo@minkirri.apana.org.au>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/doc/codeheader.c b/doc/codeheader.c
index d840ee6..f237dd0 100644
--- a/doc/codeheader.c
+++ b/doc/codeheader.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/doc/codeheader.sh b/doc/codeheader.sh
index c2760aa..dc51c77 100644
--- a/doc/codeheader.sh
+++ b/doc/codeheader.sh
@@ -3,7 +3,7 @@
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 1999, 2000 by Martin Pool <mbp@samba.org>
+# Copyright (C) 1999, 2000 by Martin Pool <mbp@sourcefrog.net>
# Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
#
# This program is free software; you can redistribute it and/or
diff --git a/doc/gloss.dox b/doc/gloss.dox
index 1b794a4..6632d23 100644
--- a/doc/gloss.dox
+++ b/doc/gloss.dox
@@ -2,7 +2,7 @@
/**
\page gloss Glossary
-\author Martin Pool <mbp@samba.org>
+\author Martin Pool <mbp@sourcefrog.net>
$Id$
diff --git a/doc/librsync.3 b/doc/librsync.3
index 9c8d5a0..da886dc 100644
--- a/doc/librsync.3
+++ b/doc/librsync.3
@@ -2,7 +2,7 @@
.\" librsync -- dynamic caching and delta update in HTTP
.\" $Id$
.\"
-.\" Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+.\" Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
.\"
.\" This program is free software; you can redistribute it and/or
.\" modify it under the terms of the GNU Lesser General Public License
@@ -66,7 +66,7 @@ error code to the caller. Patches to fix this are welcome, but at the
current state of development aborting seems as useful as trusting to
possibly-incomplete checking in the client.
.SH "AUTHOR"
-Martin Pool <mbp@samba.org>, with Andrew Tridgell <tridge@samba.org>.
+Martin Pool <mbp@sourcefrog.net>, with Andrew Tridgell <tridge@samba.org>.
.PP
rdiff development has been supported by Linuxcare, Inc and VA Linux
Systems.
diff --git a/doc/main.dox b/doc/main.dox
index 0711034..4890979 100644
--- a/doc/main.dox
+++ b/doc/main.dox
@@ -1,7 +1,7 @@
-*- text -*-
/**
\mainpage The librsync delta-encoding library
-\author Martin Pool <mbp@samba.org>
+\author Martin Pool <mbp@sourcefrog.net>
$Id$
diff --git a/doc/rdiff.1 b/doc/rdiff.1
index 529016d..632b3bf 100644
--- a/doc/rdiff.1
+++ b/doc/rdiff.1
@@ -47,7 +47,7 @@ an internal error or unhandled situation in librsync or rdiff.
.SH "SEE ALSO"
.BR librsync "(3)"
.SH "AUTHOR"
-Martin Pool <mbp@samba.org>
+Martin Pool <mbp@sourcefrog.net>
.PP
The original rsync algorithm was discovered by Andrew Tridgell.
.PP
diff --git a/emit.c b/emit.c
index eedb495..0ceb2f0 100644
--- a/emit.c
+++ b/emit.c
@@ -3,7 +3,7 @@
* librsync -- dynamic caching and delta update in HTTP
* $Id$
*
- * Copyright (C) 2000, 2001, 2004 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001, 2004 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/emit.h b/emit.h
index 96bff89..82fccee 100644
--- a/emit.h
+++ b/emit.h
@@ -3,7 +3,7 @@
* librsync -- dynamic caching and delta update in HTTP
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/fileutil.c b/fileutil.c
index 015eb74..b46a6f7 100644
--- a/fileutil.c
+++ b/fileutil.c
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/fileutil.h b/fileutil.h
index a80ce19..d7c6c12 100644
--- a/fileutil.h
+++ b/fileutil.h
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/hex.c b/hex.c
index ced8357..b0a6934 100644
--- a/hex.c
+++ b/hex.c
@@ -2,7 +2,7 @@
* rproxy -- dynamic caching and delta update in HTTP
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/isprefix.c b/isprefix.c
index d856997..73c0728 100644
--- a/isprefix.c
+++ b/isprefix.c
@@ -2,7 +2,7 @@
* librsync -- dynamic caching and delta update in HTTP
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/isprefix.h b/isprefix.h
index 1761565..2c4fc7f 100644
--- a/isprefix.h
+++ b/isprefix.h
@@ -2,7 +2,7 @@
* librsync -- dynamic caching and delta update in HTTP
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/job.c b/job.c
index 516db7f..0519002 100644
--- a/job.c
+++ b/job.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/job.h b/job.h
index 4999ddb..843649f 100644
--- a/job.h
+++ b/job.h
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/librsync-config.h.in b/librsync-config.h.in
index 0ffc048..7bf4187 100644
--- a/librsync-config.h.in
+++ b/librsync-config.h.in
@@ -2,7 +2,7 @@
*
* librsync -- library for network deltas
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/librsync.h b/librsync.h
index e154607..50fb2e9 100644
--- a/librsync.h
+++ b/librsync.h
@@ -2,7 +2,7 @@
*
* librsync -- library for network deltas
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 2003 by Donovan Baarda <abo@minkirri.apana.org.au>
*
* This program is free software; you can redistribute it and/or modify
@@ -31,7 +31,7 @@
/** \file librsync.h
*
* \brief Main public interface to librsync.
- * \author Martin Pool <mbp@samba.org>
+ * \author Martin Pool <mbp@sourcefrog.net>
* \version librsync-0.9.6
*
* $Id$
diff --git a/mdfour.c b/mdfour.c
index c705566..3783441 100644
--- a/mdfour.c
+++ b/mdfour.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1997-1999 by Andrew Tridgell
* Copyright (C) 2002, 2003 by Donovan Baarda <abo@minkirri.apana.org.au>
*
diff --git a/mdfour.h b/mdfour.h
index 75cb596..656b1e3 100644
--- a/mdfour.h
+++ b/mdfour.h
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 2002, 2003 by Donovan Baarda <abo@minkirri.apana.org.au>
*
* This program is free software; you can redistribute it and/or
diff --git a/mkprototab.pl b/mkprototab.pl
index b7ac5f7..15cadb1 100755
--- a/mkprototab.pl
+++ b/mkprototab.pl
@@ -5,7 +5,7 @@ use strict;
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+# Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
diff --git a/mksum.c b/mksum.c
index b6cac1f..a664eaf 100644
--- a/mksum.c
+++ b/mksum.c
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/msg.c b/msg.c
index 22d3cec..5ad166a 100644
--- a/msg.c
+++ b/msg.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/netint.c b/netint.c
index 37173fd..58e052f 100644
--- a/netint.c
+++ b/netint.c
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
*
* This program is free software; you can redistribute it and/or
diff --git a/netint.h b/netint.h
index ee02b94..2af443f 100644
--- a/netint.h
+++ b/netint.h
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/patch.c b/patch.c
index bc5761a..e28a61d 100644
--- a/patch.c
+++ b/patch.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/protocol.h b/protocol.h
index bee63f1..fe5ef66 100644
--- a/protocol.h
+++ b/protocol.h
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell
*
* This program is free software; you can redistribute it and/or
diff --git a/rdiff.c b/rdiff.c
index 249494a..a8088e6 100644
--- a/rdiff.c
+++ b/rdiff.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/readsums.c b/readsums.c
index 27a58cc..bc97c78 100644
--- a/readsums.c
+++ b/readsums.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
*
* This program is free software; you can redistribute it and/or
diff --git a/rollsum.c b/rollsum.c
index b0cb0bb..9e5e319 100644
--- a/rollsum.c
+++ b/rollsum.c
@@ -4,7 +4,7 @@
* $Id$
*
* Copyright (C) 2003 by Donovan Baarda <abo@minkirri.apana.org.au>
- * based on work, Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * based on work, Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/rollsum.h b/rollsum.h
index 5002bc5..60c50d6 100644
--- a/rollsum.h
+++ b/rollsum.h
@@ -4,7 +4,7 @@
* $Id$
*
* Copyright (C) 2003 by Donovan Baarda <abo@minkirri.apana.org.au>
- * based on work, Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * based on work, Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/scoop.c b/scoop.c
index d2e2a70..afe57f8 100644
--- a/scoop.c
+++ b/scoop.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/search.c b/search.c
index 0ba739f..75d023d 100644
--- a/search.c
+++ b/search.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell
*
* This program is free software; you can redistribute it and/or modify
diff --git a/search.h b/search.h
index a1d0cd8..f9d025b 100644
--- a/search.h
+++ b/search.h
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell
*
* This program is free software; you can redistribute it and/or modify
diff --git a/stats.c b/stats.c
index 78db417..7378e97 100644
--- a/stats.c
+++ b/stats.c
@@ -2,7 +2,7 @@
*
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/stream.c b/stream.c
index 23cef6b..ccdd14a 100644
--- a/stream.c
+++ b/stream.c
@@ -3,7 +3,7 @@
* librsync -- dynamic caching and delta update in HTTP
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/stream.h b/stream.h
index e2d0da8..dfdbb79 100644
--- a/stream.h
+++ b/stream.h
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/sumset.c b/sumset.c
index 59272c0..51a8cc6 100644
--- a/sumset.c
+++ b/sumset.c
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell
*
* This program is free software; you can redistribute it and/or modify
diff --git a/sumset.h b/sumset.h
index a501b23..4be461b 100644
--- a/sumset.h
+++ b/sumset.h
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
*
* This program is free software; you can redistribute it and/or
diff --git a/testsuite/changes.test b/testsuite/changes.test
index ab8caf5..67d9daa 100755
--- a/testsuite/changes.test
+++ b/testsuite/changes.test
@@ -3,7 +3,7 @@
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 2001 by Martin Pool <mbp@samba.org>
+# Copyright (C) 2001 by Martin Pool <mbp@sourcefrog.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
diff --git a/testsuite/delta.test b/testsuite/delta.test
index 7cd0aca..7aae71a 100644
--- a/testsuite/delta.test
+++ b/testsuite/delta.test
@@ -3,7 +3,7 @@
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+# Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
# Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
#
# This program is free software; you can redistribute it and/or
diff --git a/testsuite/isprefix.driver.c b/testsuite/isprefix.driver.c
index 822c73e..d81e4b1 100644
--- a/testsuite/isprefix.driver.c
+++ b/testsuite/isprefix.driver.c
@@ -2,7 +2,7 @@
* librsync -- dynamic caching and delta update in HTTP
* $Id$
*
- * Copyright (C) 2000 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/testsuite/mksum.test b/testsuite/mksum.test
index 086805d..2753c01 100755
--- a/testsuite/mksum.test
+++ b/testsuite/mksum.test
@@ -3,7 +3,7 @@
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+# Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
diff --git a/testsuite/mutate.pl b/testsuite/mutate.pl
index eb3c076..72736e9 100644
--- a/testsuite/mutate.pl
+++ b/testsuite/mutate.pl
@@ -3,7 +3,7 @@
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 1999, 2000 by Martin Pool <mbp@samba.org>
+# Copyright (C) 1999, 2000 by Martin Pool <mbp@sourcefrog.net>
# Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
#
# This program is free software; you can redistribute it and/or
diff --git a/testsuite/mutate.test b/testsuite/mutate.test
index f67be8e..fd1c107 100755
--- a/testsuite/mutate.test
+++ b/testsuite/mutate.test
@@ -3,7 +3,7 @@
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 2001 by Martin Pool <mbp@samba.org>
+# Copyright (C) 2001 by Martin Pool <mbp@sourcefrog.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
diff --git a/testsuite/signature.test b/testsuite/signature.test
index 3ff87db..fdd363b 100755
--- a/testsuite/signature.test
+++ b/testsuite/signature.test
@@ -3,7 +3,7 @@
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 2001 by Martin Pool <mbp@samba.org>
+# Copyright (C) 2001 by Martin Pool <mbp@sourcefrog.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
diff --git a/testsuite/sources.test b/testsuite/sources.test
index 22039ee..5e770bf 100755
--- a/testsuite/sources.test
+++ b/testsuite/sources.test
@@ -3,7 +3,7 @@
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 2001 by Martin Pool <mbp@samba.org>
+# Copyright (C) 2001 by Martin Pool <mbp@sourcefrog.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
diff --git a/testsuite/triple.test b/testsuite/triple.test
index 6e6e4e3..1bc1931 100755
--- a/testsuite/triple.test
+++ b/testsuite/triple.test
@@ -3,7 +3,7 @@
# librsync -- the library for network deltas
# $Id$
#
-# Copyright (C) 2001 by Martin Pool <mbp@samba.org>
+# Copyright (C) 2001 by Martin Pool <mbp@sourcefrog.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
diff --git a/trace.c b/trace.c
index 1ca92cb..557422b 100644
--- a/trace.c
+++ b/trace.c
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/trace.h b/trace.h
index 63928e6..5649aec 100644
--- a/trace.h
+++ b/trace.h
@@ -3,7 +3,7 @@
* librsync -- generate and apply network deltas
* $Id$
*
- * Copyright (C) 2000, 2001, 2004 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001, 2004 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/tube.c b/tube.c
index 7bd63ed..2e436a4 100644
--- a/tube.c
+++ b/tube.c
@@ -3,7 +3,7 @@
* librsync -- dynamic caching and delta update in HTTP
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/types.h b/types.h
index c0a6fe8..4cc6b08 100644
--- a/types.h
+++ b/types.h
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/util.c b/util.c
index cb29045..4ea1f62 100644
--- a/util.c
+++ b/util.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/util.h b/util.h
index bd71e20..d804d84 100644
--- a/util.h
+++ b/util.h
@@ -3,7 +3,7 @@
* librsync -- library for network deltas
* $Id$
*
- * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
* Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org>
*
* This program is free software; you can redistribute it and/or
diff --git a/version.c b/version.c
index eaa11f0..59c30fd 100644
--- a/version.c
+++ b/version.c
@@ -3,7 +3,7 @@
* librsync -- dynamic caching and delta update in HTTP
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/whole.c b/whole.c
index 7462959..dce4cb0 100644
--- a/whole.c
+++ b/whole.c
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2000, 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
diff --git a/whole.h b/whole.h
index 67e54f7..9a40d57 100644
--- a/whole.h
+++ b/whole.h
@@ -3,7 +3,7 @@
* librsync -- the library for network deltas
* $Id$
*
- * Copyright (C) 2001 by Martin Pool <mbp@samba.org>
+ * Copyright (C) 2001 by Martin Pool <mbp@sourcefrog.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License