summaryrefslogtreecommitdiff
path: root/ext/pty
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-16 14:15:22 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-16 14:15:22 +0000
commit5cd2eadf5796912321040c1742cf5c0bca0487a6 (patch)
tree022760a8e38dd202082f0e63c94ac1b50b353b35 /ext/pty
parenta0eae95a65707e9504a0a5a625809149c3084a14 (diff)
* ext/pty/pty.c (establishShell): remove remaining unused line.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/pty')
-rw-r--r--ext/pty/pty.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/pty/pty.c b/ext/pty/pty.c
index 24b1f99ad5..8e263790a4 100644
--- a/ext/pty/pty.c
+++ b/ext/pty/pty.c
@@ -226,7 +226,6 @@ establishShell(argc, argv, info)
getDevice(&master,&slave);
info->thread = rb_thread_current();
- currentPid = getpid();
if((i = fork()) < 0) {
close(master);
close(slave);