diff options
author | Daniel Bertalan <dani@danielbertalan.dev> | 2021-12-22 22:49:43 +0100 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-12-24 17:02:40 +0330 |
commit | 55a42906a71283dece67803e980ed97cdd9b5087 (patch) | |
tree | 66f3006b89b8b5adaf2558933790bef5f23cf691 /Ports/oksh | |
parent | 39b5bb4162b2dcb4d6be4dd17f36adaa796f22d0 (diff) | |
download | serenity-55a42906a71283dece67803e980ed97cdd9b5087.zip |
Ports: Remove obsolete /dev/tty patches
Diffstat (limited to 'Ports/oksh')
-rw-r--r-- | Ports/oksh/patches/disable_tty.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Ports/oksh/patches/disable_tty.patch b/Ports/oksh/patches/disable_tty.patch deleted file mode 100644 index 4838fe1e4e..0000000000 --- a/Ports/oksh/patches/disable_tty.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/tty.c b/tty.c -index a72e5cd..96fa904 100644 ---- a/tty.c -+++ b/tty.c -@@ -33,7 +33,7 @@ tty_init(int init_ttystate) - tty_close(); - tty_devtty = 1; - -- tfd = open("/dev/tty", O_RDWR, 0); -+ tfd = open("/dev/tty0", O_RDWR, 0); - if (tfd == -1) { - tty_devtty = 0; - warningf(false, "No controlling tty (open /dev/tty: %s)", |