]> granicus.if.org Git - sudo/commitdiff
Fix typo that prevented compilation on Irix; Friedrich Haubensak
authorTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 17 Aug 2010 13:51:12 +0000 (09:51 -0400)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 17 Aug 2010 13:51:12 +0000 (09:51 -0400)
src/get_pty.c

index 72873a0fb90e1c770e9baa81f486011f1c086f61..dafe30c351ca7fd593d89081cc54d05eee5e2198 100644 (file)
@@ -79,7 +79,7 @@ get_pty(int *master, int *slave, char *name, size_t namesz, uid_t ttyuid)
     char *line;
 
     /* IRIX-style dynamic ptys (may fork) */
-    line = _getpty(master, O_RDWR, IRUSR|S_IWUSR|S_IWGRP, 0);
+    line = _getpty(master, O_RDWR, S_IRUSR|S_IWUSR|S_IWGRP, 0);
     if (line == NULL)
        return (0);
     *slave = open(line, O_RDWR|O_NOCTTY, 0);