summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-20 17:39:34 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-20 17:39:34 -0700
commit225493d3c6be64dafec69095f254a1bee6386e33 (patch)
tree997bf319e9c8801893e2a4c52e90c9f7d4ca56af /config
parent8016dfd9080393c23d19b1c34e81d1f544655d5a (diff)
fix whitespace issues
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' find * -type f | xargs perl -i -p -e 's{^[ ]+\t}{\t}' git diff -w & git diff -b show no diffs from this change Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'config')
-rw-r--r--config/Xaccess4
-rw-r--r--config/Xsession.cpp6
2 files changed, 5 insertions, 5 deletions
diff --git a/config/Xaccess b/config/Xaccess
index 998e906..c843888 100644
--- a/config/Xaccess
+++ b/config/Xaccess
@@ -34,7 +34,7 @@
# The fourth form is similar to the third, except instead of using the
# broadcast address, it sends DirectQuerys to each of the hosts in the list
# The fifth form tells xdm which addresses to listen for incoming connections
-# on. If present, xdm will only listen for connections on the specified
+# on. If present, xdm will only listen for connections on the specified
# interfaces and/or multicast groups.
#
# In all cases, xdm uses the first entry which matches the terminal;
@@ -84,7 +84,7 @@
# all unicast interfaces, but not for multicast packets. If any LISTEN lines
# are specified, then only the listed interfaces will be listened on.
#
-# IANA has assigned FF0X:0:0:0:0:0:0:12B as the permanently assigned
+# IANA has assigned FF0X:0:0:0:0:0:0:12B as the permanently assigned
# multicast addresses for XDMCP, where X in the prefix may be replaced
# by any valid scope identifier, such as 1 for Node-Local, 2 for Link-Local,
# 5 for Site-Local, and so on. The default is equivalent to the example shown
diff --git a/config/Xsession.cpp b/config/Xsession.cpp
index 61b52a9..36ccbd0 100644
--- a/config/Xsession.cpp
+++ b/config/Xsession.cpp
@@ -10,14 +10,14 @@ then
else
#ifdef MKTEMP_COMMAND
mktemp=MKTEMP_COMMAND
- for errfile in "${TMPDIR-/tmp}/xses-$USER" "/tmp/xses-$USER"
+ for errfile in "${TMPDIR-/tmp}/xses-$USER" "/tmp/xses-$USER"
do
if ef="$( umask 077 && $mktemp "$errfile.XXXXXX" 2> /dev/null)"
then
exec > "$ef" 2>&1
mv "$ef" "$errfile" 2> /dev/null
- break
- fi
+ break
+ fi
done
#else
XCOMM Since this system doesn't have a mktemp command to allow secure