[Refdb-cvs] CVS: refdb/src refdbd.c,1.66,1.67
Status: Beta
Brought to you by:
mhoenicka
|
From: Markus H. <mho...@us...> - 2004-01-18 21:15:34
|
Update of /cvsroot/refdb/refdb/src
In directory sc8-pr-cvs1:/tmp/cvs-serv27697
Modified Files:
refdbd.c
Log Message:
set biblio_info.encoding for getbib() and gettexbib()
Index: refdbd.c
===================================================================
RCS file: /cvsroot/refdb/refdb/src/refdbd.c,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -U2 -r1.66 -r1.67
--- refdbd.c 18 Jan 2004 00:59:05 -0000 1.66
+++ refdbd.c 18 Jan 2004 21:15:31 -0000 1.67
@@ -1588,4 +1588,6 @@
/*********************************************** getbib ****/
else if (strcmp((ptr_child_clrequest->inargv)[0], "getbib") == 0) {
+ biblio_info.encoding = db_encoding;
+
/* generate a pseudo-unique table name consisting of the
process id and the current time */
@@ -1618,4 +1620,6 @@
/*********************************************** gettexbib ****/
else if (strcmp((ptr_child_clrequest->inargv)[0], "gettexbib") == 0) {
+ biblio_info.encoding = db_encoding;
+
result = gettexbib(ptr_child_clrequest, &biblio_info, &addresult);
/* let the client know what happened */
|