git://git.exim.org
/
exim.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
os_getcwd(): do not realloc if there was no malloc().
[exim.git]
/
test
/
aux-fixed
/
showenv
diff --git
a/test/aux-fixed/showenv
b/test/aux-fixed/showenv
index fc377cc8b9af77d13b5e8c5714d825f2cd7bc238..2d46eefb77a83fe607beea9694bd9073ceca61af 100755
(executable)
--- a/
test/aux-fixed/showenv
+++ b/
test/aux-fixed/showenv
@@
-3,7
+3,9
@@
# This script outputs certain information about the environment, for use when
# testing pipe transports.
-name=`id -un`
+cmd=/usr/xpg4/bin/id
+[ -x $cmd ] || cmd=id
+name=`$cmd -un`
echo Test pipe script
echo Running as: $name