Skip to content

Commit 4c10623

Browse files
committed
Update a number of broken links in comments.
Josh Kupershmidt
1 parent 337b217 commit 4c10623

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

contrib/pgcrypto/imath.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
Name: imath.c
44
Purpose: Arbitrary precision integer arithmetic routines.
5-
Author: M. J. Fromberger <http://www.dartmouth.edu/~sting/>
5+
Author: M. J. Fromberger <http://spinning-yarns.org/michael/sw/>
66
Info: Id: imath.c 21 2006-04-02 18:58:36Z sting
77
88
Copyright (C) 2002 Michael J. Fromberger, All Rights Reserved.
@@ -27,7 +27,7 @@
2727
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2828
SOFTWARE.
2929
*/
30-
/* $PostgreSQL: pgsql/contrib/pgcrypto/imath.c,v 1.8 2009/06/11 14:48:52 momjian Exp $ */
30+
/* $PostgreSQL: pgsql/contrib/pgcrypto/imath.c,v 1.9 2010/04/02 15:21:20 mha Exp $ */
3131

3232
#include "postgres.h"
3333
#include "px.h"

contrib/pgcrypto/imath.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Name: imath.h
33
Purpose: Arbitrary precision integer arithmetic routines.
4-
Author: M. J. Fromberger <http://www.dartmouth.edu/~sting/>
4+
Author: M. J. Fromberger <http://spinning-yarns.org/michael/sw/>
55
Info: Id: imath.h 21 2006-04-02 18:58:36Z sting
66
77
Copyright (C) 2002 Michael J. Fromberger, All Rights Reserved.
@@ -26,7 +26,7 @@
2626
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2727
SOFTWARE.
2828
*/
29-
/* $PostgreSQL: pgsql/contrib/pgcrypto/imath.h,v 1.7 2009/06/11 14:48:52 momjian Exp $ */
29+
/* $PostgreSQL: pgsql/contrib/pgcrypto/imath.h,v 1.8 2010/04/02 15:21:20 mha Exp $ */
3030

3131
#ifndef IMATH_H_
3232
#define IMATH_H_

contrib/pgcrypto/sha1.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2929
* SUCH DAMAGE.
3030
*
31-
* $PostgreSQL: pgsql/contrib/pgcrypto/sha1.c,v 1.17 2007/04/06 05:36:50 tgl Exp $
31+
* $PostgreSQL: pgsql/contrib/pgcrypto/sha1.c,v 1.18 2010/04/02 15:21:20 mha Exp $
3232
*/
3333
/*
3434
* FIPS pub 180-1: Secure Hash Algorithm (SHA-1)
35-
* based on: http://csrc.nist.gov/fips/fip180-1.txt
35+
* based on: http://www.itl.nist.gov/fipspubs/fip180-1.htm
3636
* implemented by Jun-ichiro itojun Itoh <itojun@itojun.org>
3737
*/
3838

contrib/pgcrypto/sha1.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/contrib/pgcrypto/sha1.h,v 1.9 2003/11/29 22:39:28 pgsql Exp $ */
1+
/* $PostgreSQL: pgsql/contrib/pgcrypto/sha1.h,v 1.10 2010/04/02 15:21:20 mha Exp $ */
22
/* $KAME: sha1.h,v 1.4 2000/02/22 14:01:18 itojun Exp $ */
33

44
/*
@@ -31,7 +31,7 @@
3131
*/
3232
/*
3333
* FIPS pub 180-1: Secure Hash Algorithm (SHA-1)
34-
* based on: http://csrc.nist.gov/fips/fip180-1.txt
34+
* based on: http://www.itl.nist.gov/fipspubs/fip180-1.htm
3535
* implemented by Jun-ichiro itojun Itoh <itojun@itojun.org>
3636
*/
3737

contrib/pgcrypto/sha2.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*
3434
* $From: sha2.c,v 1.1 2001/11/08 00:01:51 adg Exp adg $
3535
*
36-
* $PostgreSQL: pgsql/contrib/pgcrypto/sha2.c,v 1.11 2009/06/11 14:48:52 momjian Exp $
36+
* $PostgreSQL: pgsql/contrib/pgcrypto/sha2.c,v 1.12 2010/04/02 15:21:20 mha Exp $
3737
*/
3838

3939
#include "postgres.h"
@@ -98,8 +98,8 @@
9898
*
9999
* NOTE: The naming of R and S appears backwards here (R is a SHIFT and
100100
* S is a ROTATION) because the SHA-256/384/512 description document
101-
* (see http://csrc.nist.gov/cryptval/shs/sha256-384-512.pdf) uses this
102-
* same "backwards" definition.
101+
* (see http://www.iwar.org.uk/comsec/resources/cipher/sha256-384-512.pdf)
102+
* uses this same "backwards" definition.
103103
*/
104104
/* Shift-right (used in SHA-256, SHA-384, and SHA-512): */
105105
#define R(b,x) ((x) >> (b))

src/include/tsearch/dicts/spell.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
88
*
9-
* $PostgreSQL: pgsql/src/include/tsearch/dicts/spell.h,v 1.8 2010/01/02 16:58:09 momjian Exp $
9+
* $PostgreSQL: pgsql/src/include/tsearch/dicts/spell.h,v 1.9 2010/04/02 15:21:20 mha Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -37,7 +37,7 @@ typedef struct
3737

3838
/*
3939
* Names of FF_ are correlated with Hunspell options in affix file
40-
* http://sourceforge.net/docman/display_doc.php?docid=29374&group_id=143754
40+
* http://hunspell.sourceforge.net/
4141
*/
4242
#define FF_COMPOUNDONLY 0x01
4343
#define FF_COMPOUNDBEGIN 0x02

src/port/dirmod.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Win32 (NT4 and newer).
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/port/dirmod.c,v 1.61 2010/02/26 02:01:38 momjian Exp $
13+
* $PostgreSQL: pgsql/src/port/dirmod.c,v 1.62 2010/04/02 15:21:20 mha Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -220,7 +220,7 @@ typedef struct
220220
/*
221221
* pgsymlink - uses Win32 junction points
222222
*
223-
* For reference: http://www.codeproject.com/w2k/junctionpoints.asp
223+
* For reference: http://www.codeproject.com/KB/winsdk/junctionpoints.aspx
224224
*/
225225
int
226226
pgsymlink(const char *oldpath, const char *newpath)

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy