summaryrefslogtreecommitdiff
path: root/network
diff options
context:
space:
mode:
authorAaron M. Ucko <ucko@debian.org>2005-03-23 21:32:21 +0000
committerAaron M. Ucko <ucko@debian.org>2005-03-23 21:32:21 +0000
commitc75ff6a6ca0d1c0a0b90ac5cf9a14a73a913cb16 (patch)
tree6adbd0993ff22e21837b68b119c5ac03335c8978 /network
parent992f39042271801456458b4d5103f9b440ba2a04 (diff)
Load ncbi (6.1.20021213) into ncbi-tools6/branches/upstream/current.
Diffstat (limited to 'network')
-rw-r--r--network/nsclilib/ni_service.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/network/nsclilib/ni_service.c b/network/nsclilib/ni_service.c
index 918a9a74..4c5d4d12 100644
--- a/network/nsclilib/ni_service.c
+++ b/network/nsclilib/ni_service.c
@@ -1,4 +1,4 @@
-/* $RCSfile: ni_service.c,v $ $Revision: 6.12 $ $Date: 2002/10/04 15:33:42 $
+/* $RCSfile: ni_service.c,v $ $Revision: 6.13 $ $Date: 2002/11/26 17:00:11 $
* ==========================================================================
*
* PUBLIC DOMAIN NOTICE
@@ -30,6 +30,9 @@
*
* --------------------------------------------------------------------------
* $Log: ni_service.c,v $
+ * Revision 6.13 2002/11/26 17:00:11 lavr
+ * Recognize "SOME" and "DATA" as keyword values of "SRV_DEBUG_PRINTOUT"
+ *
* Revision 6.12 2002/10/04 15:33:42 lavr
* Few cosmetic changes
*
@@ -233,8 +236,11 @@ static NI_HandPtr s_GenericGetService
str, sizeof(str), "");
if (*str && (StringICmp(str, "1" ) == 0 ||
StringICmp(str, "true") == 0 ||
- StringICmp(str, "yes" ) == 0))
- net_info->debug_printout = 1/*true*/;
+ StringICmp(str, "yes" ) == 0 ||
+ StringICmp(str, "some") == 0))
+ net_info->debug_printout = eDebugPrintout_Some;
+ if (*str && StringICmp(str, "data") == 0)
+ net_info->debug_printout = eDebugPrintout_Data;
/* whether to prohibit the use of local LBSMD */
NI_GetEnvParam(configFile, SRV_SECTION, ENV_NO_LB_DIRECT,