diff options
author | jfitz <jfitz@FreeBSD.org> | 1997-07-14 20:41:47 +0800 |
---|---|---|
committer | jfitz <jfitz@FreeBSD.org> | 1997-07-14 20:41:47 +0800 |
commit | 11c84eb97ea1b1c7d13e9f0faa00657f26d46dd2 (patch) | |
tree | 71ea34347b8e6e9c8ded6526fdf63b746c306c07 /databases/msql3 | |
parent | 5c3b6c390ba0514063008f259b2782280df53966 (diff) | |
download | freebsd-ports-gnome-11c84eb97ea1b1c7d13e9f0faa00657f26d46dd2.tar.gz freebsd-ports-gnome-11c84eb97ea1b1c7d13e9f0faa00657f26d46dd2.tar.zst freebsd-ports-gnome-11c84eb97ea1b1c7d13e9f0faa00657f26d46dd2.zip |
Merge from msql-beta port as of 03/19/97
Added patch to fix mislocation of mSQL's ACL file.
Diffstat (limited to 'databases/msql3')
-rw-r--r-- | databases/msql3/files/patch-al | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/msql3/files/patch-al b/databases/msql3/files/patch-al index e69de29bb2d1..e982bc5dd98a 100644 --- a/databases/msql3/files/patch-al +++ b/databases/msql3/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) + { |