mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-03 22:23:24 +00:00
8c996bfeee
PR: 4769 Submitted by: Mikhail Teterin <mi@aldan.ziplink.net>
22 lines
675 B
Plaintext
22 lines
675 B
Plaintext
--- src/msql/msqld.c.orig Mon Jul 7 01:27:28 1997
|
|
+++ src/msql/msqld.c Thu Jul 10 13:48:05 1997
|
|
@@ -593,7 +593,7 @@
|
|
|
|
if (*confFile == 0)
|
|
{
|
|
- snprintf(confFile,sizeof(confFile),"%s/msql.conf", INST_DIR);
|
|
+ snprintf(confFile,sizeof(confFile),"%s/etc/msql2/msql.conf", INST_DIR);
|
|
}
|
|
printf("\tLoading configuration from '%s'.\n",confFile);
|
|
msqlLoadConfigFile(confFile);
|
|
@@ -687,8 +687,7 @@
|
|
/*
|
|
** Ensure that the correct user owns the database files
|
|
*/
|
|
- snprintf(path,MAXPATHLEN, "%s/msqldb",
|
|
- (char *)msqlGetCharConf("general","inst_dir"));
|
|
+ strcpy(path, "/var/db/msqldb");
|
|
if (stat(path,&sbuf) < 0)
|
|
{
|
|
printf("\nError! Can't stat '%s'\n\n",path);
|