Update of /cvsroot/radmind/radmind
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv12171
Modified Files:
daemon.c
Log Message:
Set correct paths for TLS related files. [ Bug 1785746 ]
Thanks to Linc Davis for reporting the problem.
Index: daemon.c
===================================================================
RCS file: /cvsroot/radmind/radmind/daemon.c,v
retrieving revision 1.83
retrieving revision 1.84
diff -C2 -d -r1.83 -r1.84
*** daemon.c 31 Jul 2007 02:55:36 -0000 1.83
--- daemon.c 4 Sep 2007 20:40:00 -0000 1.84
***************
*** 158,162 ****
}
! b_addr.s_addr = htonl( INADDR_ANY );
while (( c = getopt( ac, av, "a:Bb:dD:F:fL:m:p:P:Ru:UVw:x:y:z:Z:" ))
--- 158,167 ----
}
! b_addr.s_addr = htonl( INADDR_ANY );
!
! /* Set appropriate TLS paths for server; default values are for client */
! caFile = "cert/ca.pem";
! cert = "cert/cert.pem";
! privatekey = "cert/cert.pem";
while (( c = getopt( ac, av, "a:Bb:dD:F:fL:m:p:P:Ru:UVw:x:y:z:Z:" ))
|