Commit 44582cd8 authored by Tom Lane's avatar Tom Lane

Temporary solution for XLogDir breakage.

parent 1be01431
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.278 2002/08/04 06:26:33 thomas Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.279 2002/08/04 23:56:01 tgl Exp $
* *
* NOTES * NOTES
* this is the "main" module of the postgres backend and * this is the "main" module of the postgres backend and
...@@ -1547,7 +1547,6 @@ PostgresMain(int argc, char *argv[], const char *username) ...@@ -1547,7 +1547,6 @@ PostgresMain(int argc, char *argv[], const char *username)
SetXLogDir(potential_XLogDir); SetXLogDir(potential_XLogDir);
} }
Assert(DataDir); Assert(DataDir);
Assert(strlen(XLogDir) > 0);
/* /*
* Set up signal handlers and masks. * Set up signal handlers and masks.
...@@ -1702,7 +1701,7 @@ PostgresMain(int argc, char *argv[], const char *username) ...@@ -1702,7 +1701,7 @@ PostgresMain(int argc, char *argv[], const char *username)
if (!IsUnderPostmaster) if (!IsUnderPostmaster)
{ {
puts("\nPOSTGRES backend interactive interface "); puts("\nPOSTGRES backend interactive interface ");
puts("$Revision: 1.278 $ $Date: 2002/08/04 06:26:33 $\n"); puts("$Revision: 1.279 $ $Date: 2002/08/04 23:56:01 $\n");
} }
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment