summaryrefslogtreecommitdiffstats
path: root/pty.c
diff options
context:
space:
mode:
Diffstat (limited to 'pty.c')
-rw-r--r--pty.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pty.c b/pty.c
index c6c7363b..f7ef19ca 100644
--- a/pty.c
+++ b/pty.c
@@ -14,8 +14,9 @@
*/
#include "includes.h"
-RCSID("$Id: pty.c,v 1.8 1999/12/08 23:16:55 damien Exp $");
+RCSID("$Id: pty.c,v 1.9 1999/12/13 23:47:16 damien Exp $");
+#include <util.h>
#include "pty.h"
#include "ssh.h"
@@ -163,7 +164,7 @@ pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen)
*ptyfd = open(buf, O_RDWR | O_NOCTTY);
if (*ptyfd < 0)
continue;
- snprintf(namebuf, sizeof namebuflen, "/dev/tty%c%c",
+ snprintf(namebuf, namebuflen, "/dev/tty%c%c",
ptymajors[i / num_minors], ptyminors[i % num_minors]);
/* Open the slave side. */