> > > > There are new drawterm binaries at http://swtch.com/drawterm/
> > >
> > > I almost don't dare to ask...
> > > anybody tried to compile it (with success)
> > > for sunos 5.8?
> >
> > To answer my own question: after a little struggle I have a drawterm.
> >
> > When I start it with my usual -a and -c flags it says:
> >
> > | cpu: cannot write user/domain choice in p9any:
> > | '/mnt/factotum/ctl' does not exist
> > |
> > | goodbye
> >
> > Is this something I missed in the struggle?
> > Or the effect of a too old p9p installation?
> > Or?
> >
> > (running cpu from a plan9 terminal works fine,
> > as does old drawterm)
>
> commenting out the 'exits' at the end of 'fatal'
> and adding some debug prints shows me a bit more.
> seems like the '/mnt/factotum/ctl does not exist
> somehow is stuck from a previous error and not reset.
>
> reading p9any negotiation: [EMAIL PROTECTED]
> cpu: cannot write user/domain choice in p9any: 11 != 20: p9sk1 cs.utwente.nl
> cpu: cannot write p9sk1 challenge: (factotum ctl err msg)
> [EMAIL PROTECTED] password:
> cpu: cannot send ticket and authenticator back in p9sk1: cs gave empty
> translation
> list
> cpu: can't authenticate slurp: cs gave empty translation list
> cpu: wrting network: dir: fd out of range or not open
> cpu: wanting for FS: fd out of range or not open: fd out of range or not open
> remote cpu:
> goodbye
If solaris is the only system where the following breaks,
seems we know again why we still love it, even if just a bit -
to keep us honest.
(the above is a probably bad attempt at paraphrasing the Geoff's
'active port [...] to keep the code honest' line at the wiki)
anyway, the fix below brings me to:
'can't authenticate: cpuserver: can't establish ssl connection: bad algorithm'
I'll continue digging.
Axel.
; cvs diff -buw devip-posix.c
Index: devip-posix.c
===================================================================
RCS file: /cvs/drawterm/kern/devip-posix.c,v
retrieving revision 1.1
diff -b -u -w -r1.1 devip-posix.c
--- devip-posix.c 8 Aug 2005 12:50:11 -0000 1.1
+++ devip-posix.c 5 Nov 2005 21:26:36 -0000
@@ -199,7 +199,7 @@
int
so_send(int fd, void *d, int n, int f)
{
- send(fd, d, n, f);
+ return send(fd, d, n, f);
}
int