changeset 21:95f1f4a42257

Pass the needed "-d" flag to the audioDB constructor in adb__status
author mas01cr
date Thu, 16 Aug 2007 08:51:00 +0000
parents 0519fc406b29
children a450c8545f41
files audioDB.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/audioDB.cpp	Mon Aug 13 23:25:16 2007 +0000
+++ b/audioDB.cpp	Thu Aug 16 08:51:00 2007 +0000
@@ -2508,8 +2508,8 @@
 
 // SERVER SIDE
 int adb__status(struct soap* soap, xsd__string dbName, xsd__int &adbCreateResult){
-  char* const argv[]={"audioDB",COM_STATUS,dbName};
-  const unsigned argc = 3;
+  char* const argv[]={"audioDB",COM_STATUS,"-d",dbName};
+  const unsigned argc = 4;
   audioDB(argc,argv);
   adbCreateResult=100;
   return SOAP_OK;