Searched defs:xml_tmp_file (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/isns/isnsd/xml/
H A Ddata.c66 static char *xml_tmp_file = NULL; variable
806 xml_tmp_file = (char *)malloc(len + 5);
809 xml_tmp_file != NULL) {
813 (void) strcpy(xml_tmp_file, xml_file);
814 (void) strcat(xml_tmp_file, XML_DOT_TMP);
822 xml_tmp_file = XML_PATH XML_FILE_NAME XML_DOT_TMP;
850 if (access(xml_tmp_file, F_OK) == 0) {
851 (void) remove(xml_tmp_file);
1412 if (xmlSaveFormatFile(xml_tmp_file, xml_doc, 1) == -1 ||
1416 rename(xml_tmp_file, xml_fil
[all...]

Completed in 507 milliseconds