提交 49459d85 编写于 作者: M Marc G. Fournier

This patch fixes one of two problems with grant/revoke statements on the

Linux platform.

From: James Hughes <jamesh@interpath.com>
上级 72295139
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.8 1997/09/08 02:31:57 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.9 1998/01/25 04:07:00 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -226,7 +226,7 @@ GetProcessingMode()
char *
GetDatabasePath()
{
return DatabasePath;
return strdup(DatabasePath);
}
/*
......@@ -236,7 +236,7 @@ GetDatabasePath()
char *
GetDatabaseName()
{
return DatabaseName;
return strdup(DatabaseName);
}
void
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册