summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera2008-08-25 17:37:40 +0000
committerAlvaro Herrera2008-08-25 17:37:40 +0000
commitb9ea5a1c07112b16b107338d6f9b419c13faa4fc (patch)
tree701baefde45c791003b838d1f07935f5de8099ed
parent60984350d39f5104906736e0a2e35abf375b8509 (diff)
Update URL to Ross William's paper.
Devrim Gunduz.
-rw-r--r--src/backend/utils/hash/pg_crc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/hash/pg_crc.c b/src/backend/utils/hash/pg_crc.c
index d0a256cda5..c5db6267ca 100644
--- a/src/backend/utils/hash/pg_crc.c
+++ b/src/backend/utils/hash/pg_crc.c
@@ -5,7 +5,7 @@
*
* See Ross Williams' excellent introduction
* A PAINLESS GUIDE TO CRC ERROR DETECTION ALGORITHMS, available from
- * ftp://ftp.rocksoft.com/papers/crc_v3.txt or several other net sites.
+ * http://www.ross.net/crc/download/crc_v3.txt or several other net sites.
*
* We use a normal (not "reflected", in Williams' terms) CRC, using initial
* all-ones register contents and a final bit inversion.