[1007] in SIPB_Linux_Development
page
daemon@ATHENA.MIT.EDU (jmmikkel@MIT.EDU)
Sun Apr 30 20:22:56 1995
From: jmmikkel@MIT.EDU
Date: Sun, 30 Apr 1995 20:22:27 -0400
To: linux-dev@MIT.EDU
Cc: jmmikkel@MIT.EDU
/afs/sipb/project/linux/lockers/net-tools/page mysteriously stopped
working a few weeks ago. Today I determined that it does not work on
at least dans-le-mur, quiche, and foundation.
I just built one that appears to work better (at least, it doesn't seg
fault), and here's what I changed:
20:17 dans-le-mur{jmmikkel}%diff misc.c /afs/net/project/page/src/clients/lib/misc.c
217c217
< resbuf[i] = (char *) malloc(strlen(res[i]) + 1);
---
> resbuf[i] = (char *) malloc(strlen(res[i] + 1));
20:17 dans-le-mur{jmmikkel}%
Since I'm not really in the linux build loop, I don't know where
source for things built in project.linux lives, so I was using the
source out of /afs/net/... you see, up there. :)
Joanne