Browse Source

Fixed typo in Darwin termios settings

Solomon Hykes 12 years ago
parent
commit
c283ff6675
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docker/termios_darwin.go

+ 2 - 2
docker/termios_darwin.go

@@ -3,6 +3,6 @@ package main
 import "syscall"
 
 const (
-	getTermios = syscall.TCIOGETA
-	setTermios = syscall.TCIOSETA
+	getTermios = syscall.TIOCGETA
+	setTermios = syscall.TIOCSETA
 )