missed session.c part of:

- stevesk@cvs.openbsd.org 2001/02/08 10:11:23
     [session.c sftp-client.c]
     %i -> %d
This commit is contained in:
Kevin Steves 2001-02-11 14:12:08 +00:00
parent 432768612c
commit 43cdef3ba5
1 changed files with 2 additions and 3 deletions

View File

@ -1532,7 +1532,7 @@ session_open(int chanid)
} }
s->pw = auth_get_user(); s->pw = auth_get_user();
if (s->pw == NULL) 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); debug("session_open: session %d: link with channel %d", s->self, chanid);
s->chanid = chanid; s->chanid = chanid;
return 1; return 1;
@ -1842,7 +1842,7 @@ session_pty_cleanup(Session *s)
if (s == NULL || s->ttyfd == -1) if (s == NULL || s->ttyfd == -1)
return; 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. */ /* Cancel the cleanup function. */
fatal_remove_cleanup(pty_cleanup_proc, (void *)s); fatal_remove_cleanup(pty_cleanup_proc, (void *)s);
@ -2008,7 +2008,6 @@ session_proctitle(Session *s)
void void
do_authenticated2(Authctxt *authctxt) do_authenticated2(Authctxt *authctxt)
{ {
/* /*
* Cancel the alarm we set to limit the time taken for * Cancel the alarm we set to limit the time taken for
* authentication. * authentication.