From 43cdef3ba58f4b7dd47787425c2cab8ceec64006 Mon Sep 17 00:00:00 2001 From: Kevin Steves Date: Sun, 11 Feb 2001 14:12:08 +0000 Subject: missed session.c part of: - stevesk@cvs.openbsd.org 2001/02/08 10:11:23 [session.c sftp-client.c] %i -> %d --- session.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'session.c') diff --git a/session.c b/session.c index 92fb31e09..d1870918c 100644 --- a/session.c +++ b/session.c @@ -1532,7 +1532,7 @@ session_open(int chanid) } s->pw = auth_get_user(); if (s->pw == NULL) - fatal("no user for session %i", s->self); + fatal("no user for session %d", s->self); debug("session_open: session %d: link with channel %d", s->self, chanid); s->chanid = chanid; return 1; @@ -1842,7 +1842,7 @@ session_pty_cleanup(Session *s) if (s == NULL || s->ttyfd == -1) return; - debug("session_pty_cleanup: session %i release %s", s->self, s->tty); + debug("session_pty_cleanup: session %d release %s", s->self, s->tty); /* Cancel the cleanup function. */ fatal_remove_cleanup(pty_cleanup_proc, (void *)s); @@ -2008,7 +2008,6 @@ session_proctitle(Session *s) void do_authenticated2(Authctxt *authctxt) { - /* * Cancel the alarm we set to limit the time taken for * authentication. -- cgit v1.2.3