28 lines
946 B
Diff
28 lines
946 B
Diff
From 3351bcc9613ba022503103e7e4ffd01e7bd8e0fd Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?R=C3=BCdiger=20Oertel?= <ro@suse.de>
|
|
Date: Tue, 18 Aug 2020 11:57:16 +0200
|
|
Subject: [PATCH] etc/profile add some missing ;; in case esac statements
|
|
|
|
|
|
diff --git a/files/etc/profile b/files/etc/profile
|
|
index 7e92102..7edc50b 100644
|
|
--- a/files/etc/profile
|
|
+++ b/files/etc/profile
|
|
@@ -80,7 +80,7 @@ if test -O "$tty" -a -n "$PS1"; then
|
|
test "${TERM}" = "ibm327x" && { TERM=dumb; export TERM; }
|
|
case "$TERM" in
|
|
screen.*)
|
|
- test -e /usr/share/terminfo/s/${TERM} || { TERM=screen; export TERM; }
|
|
+ test -e /usr/share/terminfo/s/${TERM} || { TERM=screen; export TERM; } ;;
|
|
esac
|
|
# Do not change settings on local line if connected to remote
|
|
if test -z "$SSH_TTY" -a "${TERM}" != "dumb" ; then
|
|
@@ -384,7 +384,7 @@ case "$-" in
|
|
echo "Directory: $PWD"
|
|
# Last but not least
|
|
date
|
|
- fi
|
|
+ fi ;;
|
|
esac
|
|
unset ORIG_PATH
|
|
unset is
|