missed session.c part of:

   - stevesk@cvs.openbsd.org 2001/02/08 10:11:23
     [session.c sftp-client.c]
     %i -> %d
diff --git a/session.c b/session.c
index 92fb31e..d187091 100644
--- a/session.c
+++ b/session.c
@@ -1532,7 +1532,7 @@
 	}
 	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 @@
 	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 @@
 void
 do_authenticated2(Authctxt *authctxt)
 {
-
 	/*
 	 * Cancel the alarm we set to limit the time taken for
 	 * authentication.