]> granicus.if.org Git - sudo/commitdiff
Fix typos that prevented compilation on Irix; Friedrich Haubensak
authorTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 17 Aug 2010 13:49:59 +0000 (09:49 -0400)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 17 Aug 2010 13:49:59 +0000 (09:49 -0400)
--HG--
branch : 1.7

boottime.c
get_pty.c

index 7c0410c7094253a36b3586364660e47087ced72a..607cf74a79baa621345807d7ad1688825c4823e9 100644 (file)
@@ -141,7 +141,7 @@ get_boottime(tv)
 
 int
 get_boottime(tv)
-    struct timeval *tv
+    struct timeval *tv;
 {
     return 0;
 }
index e271bf26ecec5e76145e8bb9e2f7c058e64f85fa..236de6e6d05fbd359161ca3ee7f29deb4c1aa76d 100644 (file)
--- a/get_pty.c
+++ b/get_pty.c
@@ -91,7 +91,7 @@ get_pty(master, slave, name, namesz, 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);