rse 99/11/28 03:24:27
Modified: src CHANGES
src/helpers GuessOS
Log:
Replaced pipes with commas in GuessOS' fallback output (displayed for not
explicitly recognized platforms) to avoid side-effects with APACI's --shadow
feature and similar uses where GuessOS' output is used directly on the
filesystem (where pipes are meta-characters!).
Submitted by: Paul Gilmartin <[EMAIL PROTECTED]>
Adjusted and reviewed by: Ralf S. Engelschall
PR: 5303
Revision Changes Path
1.1449 +6 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1448
retrieving revision 1.1449
diff -u -r1.1448 -r1.1449
--- CHANGES 1999/11/28 11:17:50 1.1448
+++ CHANGES 1999/11/28 11:24:25 1.1449
@@ -1,4 +1,10 @@
Changes with Apache 1.3.10
+
+ *) Replaced pipes with commas in GuessOS' fallback output (displayed for
not
+ explicitly recognized platforms) to avoid side-effects with APACI's
+ --shadow feature and similar uses where GuessOS' output is used directly
+ on the filesystem (where pipes are meta-characters!).
+ [Paul Gilmartin <[EMAIL PROTECTED]>] PR#5303
*) Made stripping of a trailing slash in directory names in top-level
configure script more robust and this way support also a plain `/'
1.64 +1 -1 apache-1.3/src/helpers/GuessOS
Index: GuessOS
===================================================================
RCS file: /home/cvs/apache-1.3/src/helpers/GuessOS,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- GuessOS 1999/08/09 07:38:44 1.63
+++ GuessOS 1999/11/28 11:24:27 1.64
@@ -326,5 +326,5 @@
# At this point we gone through all the one's
# we know of: Punt
-echo "${MACHINE}-whatever-${SYSTEM}|${RELEASE}|${VERSION}"
+echo "${MACHINE}-whatever-${SYSTEM},${RELEASE},${VERSION}"
exit 0