From: Patrick M. <ume...@us...> - 2007-05-31 20:47:20
|
Update of /cvsroot/radmind/radmind In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv25520 Modified Files: ktcheck.c Log Message: Fixed bug where included command files not already on the client coudln't be downloaded. Index: ktcheck.c =================================================================== RCS file: /cvsroot/radmind/radmind/ktcheck.c,v retrieving revision 1.121 retrieving revision 1.122 diff -C2 -d -r1.121 -r1.122 *** ktcheck.c 31 May 2007 15:22:26 -0000 1.121 --- ktcheck.c 31 May 2007 20:47:16 -0000 1.122 *************** *** 962,968 **** goto error; } - if ( read_kfile( path ) != 0 ) { - exit( 2 ); - } } --- 962,965 ---- *************** *** 980,983 **** --- 977,983 ---- goto error; } + if ( read_kfile( path ) != 0 ) { + exit( 2 ); + } break; |