Update of /cvsroot/epp-rtk/name-rtk-addon/c++/src
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv26211
Modified Files:
main_GNRclient.cc
Log Message:
Changed so the first line of the config file can be used to set
CACertFile and CACertDir in case these are needed.
Index: main_GNRclient.cc
===================================================================
RCS file: /cvsroot/epp-rtk/name-rtk-addon/c++/src/main_GNRclient.cc,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** main_GNRclient.cc 18 Oct 2005 10:49:50 -0000 1.8
--- main_GNRclient.cc 30 Apr 2007 14:06:14 -0000 1.9
***************
*** 128,131 ****
--- 128,135 ----
next = strtok(NULL, " \"");
if(next != NULL) myTransport->setCertFile(next);
+ next = strtok(NULL, " \"");
+ if(next != NULL) myTransport->setCACertFile(next);
+ next = strtok(NULL, " \"");
+ if(next != NULL) myTransport->setCACertDir(next);
test.setTransport(myTransport);
|