Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9005da0

Browse files
committed
Fix display in initdb.
1 parent c8b4d4d commit 9005da0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/backend/catalog/index.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.51 1998/08/20 23:01:24 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.52 1998/08/21 23:22:34 momjian Exp $
1111
*
1212
*
1313
* INTERFACE ROUTINES
@@ -1276,7 +1276,7 @@ FormIndexDatum(int numberOfAttributes,
12761276
* ----------------
12771277
*/
12781278

1279-
for (i = 1; i <= numberOfAttributes; i += 1)
1279+
for (i = 1; i <= numberOfAttributes; i++)
12801280
{
12811281
offset = AttrNumberGetAttrOffset(i);
12821282

src/bin/initdb/initdb.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#
2727
#
2828
# IDENTIFICATION
29-
# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.50 1998/08/20 22:07:46 momjian Exp $
29+
# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.51 1998/08/21 23:22:36 momjian Exp $
3030
#
3131
#-------------------------------------------------------------------------
3232

@@ -344,7 +344,7 @@ pg_version $PGDATA/base/template1
344344
#----------------------------------------------------------------------------
345345

346346
if [ $template_only -eq 0 ]; then
347-
echo "Creating global classes in $PG_DATA/base"
347+
echo "Creating global classes in $PGDATA/base"
348348
[ "$debug" -ne 0 ] && echo "Running: postgres $BACKENDARGS template1"
349349

350350
cat $GLOBAL \

0 commit comments

Comments
 (0)