Removed obsolete function

This commit is contained in:
Thomas Schmitt 2008-08-06 14:40:30 +00:00
parent 94f9c9acf8
commit 8bce9569e1
2 changed files with 2 additions and 20 deletions

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.08.06.143825"
#define Xorriso_timestamP "2008.08.06.143922"

View File

@ -1206,7 +1206,7 @@ int Xorriso_pacifier_loop(struct XorrisO *xorriso, struct burn_drive *drive,
}
time_prediction/= norm;
if(time_prediction < 30*86400) {
time_prediction+= current_time;
time_prediction+= current_time + 1;
Ftimetxt(time_prediction, date_text, 4);
sprintf(xorriso->info_text+strlen(xorriso->info_text),
", estimate finish %s", date_text);
@ -6513,24 +6513,6 @@ int Xorriso_is_split(struct XorrisO *xorriso, char *path, void *node,
}
int Xorriso_libburn_adr(struct XorrisO *xorriso, char *path, char adr[],
int flag)
{
int ret;
char local_adr[BURN_DRIVE_ADR_LEN];
adr[0]= 0;
ret= burn_drive_convert_fs_adr(path, local_adr);
Xorriso_process_msg_queues(xorriso,0);
if(ret<=0)
return(ret);
if(strlen(local_adr)>=SfileadrL)
return(2);
strcpy(adr, local_adr);
return(1);
}
/* @param flag bit0= grow_overwriteable_iso
bit1= obtain info from outdev
*/