diff options
author | James FitzGibbon <jfitz@FreeBSD.org> | 1997-07-14 12:41:47 +0000 |
---|---|---|
committer | James FitzGibbon <jfitz@FreeBSD.org> | 1997-07-14 12:41:47 +0000 |
commit | 3e63e191821d6265541d8e8c6de167741cab0c7d (patch) | |
tree | 5d1589e8ec0978d14b2d032064152f4120b44e69 /databases/msql | |
parent | Merge from msql-beta port as of 02/08/97 (diff) |
Merge from msql-beta port as of 03/19/97
Added patch to fix mislocation of mSQL's ACL file.
Notes
Notes:
svn path=/head/; revision=7312
Diffstat (limited to 'databases/msql')
-rw-r--r-- | databases/msql/files/patch-al | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/msql/files/patch-al b/databases/msql/files/patch-al index e69de29bb2d1..e982bc5dd98a 100644 --- a/databases/msql/files/patch-al +++ b/databases/msql/files/patch-al @@ -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) + { |