[Refdb-cvs] CVS: refdb/src refdbd.c,1.74,1.74.2.1
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2004-07-26 20:32:51
|
Update of /cvsroot/refdb/refdb/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25922 Modified Files: Tag: Release_0_9_5_stable refdbd.c Log Message: getbib return message now contains number of refs not found Index: refdbd.c =================================================================== RCS file: /cvsroot/refdb/refdb/src/refdbd.c,v retrieving revision 1.74 retrieving revision 1.74.2.1 diff -u -U2 -r1.74 -r1.74.2.1 --- refdbd.c 16 Feb 2004 21:36:11 -0000 1.74 +++ refdbd.c 26 Jul 2004 20:32:42 -0000 1.74.2.1 @@ -20,4 +20,6 @@ +++++++++++++++++++++++++*/ +/* ToDo: at startup, check for refdb database if using sqlite */ + /* ToDo: linked list for socket descriptors looks ok, but does not have much effect as long as this app is not multithreaded. Test thoroughly again as soon as multithreading is implemented. Update: With multithreading still pending (and maybe never coming) and the new fork() way of doing things the linked list does not do much anyway. The overhead is small, so probably its best to just leave it there for the time being */ @@ -1636,5 +1638,5 @@ } else { - sprintf(child_returnmsg, ULLSPEC" reference(s) formatted, "ULLSPEC" failed\n", (unsigned long long)(addresult.success), (unsigned long long)(addresult.failure)); + sprintf(child_returnmsg, ULLSPEC" reference(s) formatted, "ULLSPEC" failed, "ULLSPEC" not found\n", (unsigned long long)(addresult.success), (unsigned long long)(addresult.failure), (unsigned long long)(addresult.skipped)); } } |