Update of /cvsroot/tmda/tmda-cgi
In directory sc8-pr-cvs1:/tmp/cvs-serv16141
Modified Files:
ChangeLog configure
Log Message:
Changed configure to strip slashes from DispDir to keep Netscape FastTrack
happy. (As per Tim Rice's request.)
Index: ChangeLog
===================================================================
RCS file: /cvsroot/tmda/tmda-cgi/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog 18 Nov 2003 04:02:49 -0000 1.70
+++ ChangeLog 24 Nov 2003 18:21:32 -0000 1.71
@@ -1,3 +1,8 @@
+2003-11-24 Gre7g Luterman <gre7g@xxxxxxxxxxxx>
+
+ * Changed configure to strip slashes from DispDir to keep Netscape
+ FastTrack happy. (As per Tim Rice's request.)
+
2003-11-17 Gre7g Luterman <gre7g@xxxxxxxxxxxx>
* Fixed a stupid type-o in configure.
Index: configure
===================================================================
RCS file: /cvsroot/tmda/tmda-cgi/configure,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- configure 18 Nov 2003 04:02:49 -0000 1.17
+++ configure 24 Nov 2003 18:21:32 -0000 1.18
@@ -266,7 +266,7 @@
"Target": "/usr/local/apache/cgi-bin/tmda.cgi",
"Base": "../tmda/",
"Path": os.path.abspath(os.path.split(sys.argv[0])[0]) + "/",
- "DispDir": "/display/",
+ "DispDir": "/display",
"AuthType": "remote",
"AuthFile": "None",
"AuthProg": "/usr/sbin/checkpassword",
@@ -409,7 +409,7 @@
print ErrStr
sys.exit()
-if OptD["DispDir"][-1] != "/": OptD["DispDir"] += "/"
+if OptD["DispDir"][-1] == "/": OptD["DispDir"] = OptD["DispDir"][:-1]
if OptD["Mode"] == "no-su": OptD["Perm"] = "711"
|