1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Merge from msql-beta port as of 03/19/97

Added patch to fix mislocation of mSQL's ACL file.
This commit is contained in:
James FitzGibbon 1997-07-14 12:41:47 +00:00
parent d29320b1a4
commit 3e63e19182
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=7312
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- src/msql/acl.c.orig Mon Mar 17 13:54:34 1997
+++ src/msql/acl.c Mon Mar 17 13:54:57 1997
@@ -111,7 +111,7 @@
/*
** Open the acl file
*/
- (void)sprintf(path,"%s/msql.acl", (char *)msqlGetCharConf("inst_dir"));
+ (void)sprintf(path,"%s/etc/msql2/msql.acl", (char *)msqlGetCharConf("inst_dir"));
fp = fopen(path,"r");
if (!fp)
{

View File

@ -0,0 +1,11 @@
--- src/msql/acl.c.orig Mon Mar 17 13:54:34 1997
+++ src/msql/acl.c Mon Mar 17 13:54:57 1997
@@ -111,7 +111,7 @@
/*
** Open the acl file
*/
- (void)sprintf(path,"%s/msql.acl", (char *)msqlGetCharConf("inst_dir"));
+ (void)sprintf(path,"%s/etc/msql2/msql.acl", (char *)msqlGetCharConf("inst_dir"));
fp = fopen(path,"r");
if (!fp)
{