[cvsnt] Re: Client connection failing to cvsnt on a HP-UX UNIX box using pserver
Tony Hoyle
tmh at nodomain.org
Mon Mar 8 21:03:39 GMT 2004
Haitham Hamad wrote:
> cvs -t pserver
> -> Tracelevel set to 1. PID is 25421
> -> Session ID is 634d404cda783c19
> BEGIN AUTH REQUEST
> cvs [server aborted]: bad auth protocol start: BEGIN AUTH REQUEST
> error
>
Hmm... the code is looking for .so files...
Try this patch:
diff -u -r1.19.2.6 library_unix.c
--- src/library_unix.c 24 Feb 2004 17:10:02 -0000 1.19.2.6
+++ src/library_unix.c 8 Mar 2004 20:56:56 -0000
@@ -227,7 +227,7 @@
if(!*context)
{
- snprintf(fn,sizeof(fn),"%s/*_protocol.so",CVS_LIBRARY_DIR);
+ snprintf(fn,sizeof(fn),"%s/*_protocol.la",CVS_LIBRARY_DIR);
globbuf.gl_offs = 0;
if(glob(fn,GLOB_ERR|GLOB_NOSORT,NULL,&globbuf))
return NULL;
I'll put it in the next release if it works.
Tony
More information about the cvsnt
mailing list