fix gold interface QOS

git-svn-id: svn://opensvn.adaptivecomputing.com/maui/trunk@28 3f5042e3-fb1d-0410-be18-d6ca2573e517
This commit is contained in:
dev 2005-09-06 19:32:22 +00:00
parent b84261c49f
commit c78ee20126
4 changed files with 8 additions and 3 deletions

View File

@ -540,7 +540,7 @@ int MAMAllocJDebit(
if (J->Cred.Q != NULL)
{
AE = NULL;
MXMLCreateE(&AE,(char *)MS3JobAttr[A->Version][mjaQOS]);
MXMLCreateE(&AE,(char *)MS3JobAttr[A->Version][mjaQOSReq]);
MXMLSetVal(AE,(void *)J->Cred.Q->Name,mdfString);
MXMLAddE(JE,AE);
}

View File

@ -186,9 +186,10 @@ char *MFULoad(
BufSize = ReadCount * BlockSize;
DBG(5,fCORE) DPrint("INFO: new file '%s' opened (%d bytes)\n",
DBG(5,fCORE) DPrint("INFO: new file '%s' opened with %d bytes (ReadCount = %d)\n",
FileName,
BufSize);
BufSize,
ReadCount);
if ((ptr = (char *)malloc(BufSize + 1)) == NULL)
{

View File

@ -1048,6 +1048,8 @@ int __MPBSSystemQuery(
} /* END for (AP) */
} /* END for (SP) */
pbs_statfree(Server);
return(SUCCESS);
} /* END __MPBSSystemQuery() */

View File

@ -116,6 +116,8 @@ int main(
if ((ArgV[aindex] == NULL) || (aindex >= 1024))
break;
tmpArgV[0] = NULL;
MUStrDup(&tmpArgV[aindex],ArgV[aindex]);
}