summaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorhubertf <hubertf>1998-05-12 07:38:40 +0000
committerhubertf <hubertf>1998-05-12 07:38:40 +0000
commit06adb74d4350cb47e06b647b9ec45f4e2b915a79 (patch)
tree13cc192e21ac0c716afeb089e434a63632a4530b /comms
parent050969883f3d5536cf3dceac508330fed22e6a15 (diff)
downloadpkgsrc-06adb74d4350cb47e06b647b9ec45f4e2b915a79.tar.gz
s/cuaa/tty/
Diffstat (limited to 'comms')
-rw-r--r--comms/minicom/scripts/create-dev-link8
1 files changed, 4 insertions, 4 deletions
diff --git a/comms/minicom/scripts/create-dev-link b/comms/minicom/scripts/create-dev-link
index 91ae3787ae8..77a32d87fc7 100644
--- a/comms/minicom/scripts/create-dev-link
+++ b/comms/minicom/scripts/create-dev-link
@@ -41,13 +41,13 @@ else
cd /dev
/bin/ls -C tty[0-9][0-9]
echo ""
- echo -n "Enter the number X from cuaaX above : "
+ echo -n "Enter the number X from ttyX above : "
read bar
if [ ${bar} ] ; then
- if [ -e /dev/cuaa${bar} ]; then
- ln -s /dev/cuaa${bar} /dev/modem
+ if [ -e /dev/tty${bar} ]; then
+ ln -s /dev/tty${bar} /dev/modem
else
- echo "Error: /dev/cuaa${bar} doesn't exist."
+ echo "Error: /dev/tty${bar} doesn't exist."
exit 1
fi
fi