Fixed a typo in messages and goto label

This commit is contained in:
2011-04-05 07:21:23 +00:00
parent 2b9151eb64
commit 77c7de4ce6
3 changed files with 7 additions and 7 deletions

View File

@ -229,7 +229,7 @@ int main(int argc, char **argv)
*/
ret= Xorriso_prescan_args(xorriso,argc,argv,0);
if(ret == 0)
goto end_sucessfully;
goto end_successfully;
if(ret < 0)
exit(5);
@ -246,7 +246,7 @@ int main(int argc, char **argv)
/* Interpret startup files */
ret= Xorriso_read_rc(xorriso, 0);
if(ret == 3)
goto end_sucessfully;
goto end_successfully;
if(ret <= 0)
{ret= 5; goto emergency_exit;}
@ -258,7 +258,7 @@ int main(int argc, char **argv)
i= 1;
ret= Xorriso_interpreter(xorriso, argc, argv, &i, 2);
if(ret == 3)
goto end_sucessfully;
goto end_successfully;
if(ret <= 0)
{ret= 5; goto emergency_exit;}
@ -267,7 +267,7 @@ int main(int argc, char **argv)
if(ret <= 0)
{ret= 6; goto emergency_exit;}
end_sucessfully:; /* normal shutdown, including eventual -commit */
end_successfully:; /* normal shutdown, including eventual -commit */
Xorriso_process_msg_queues(xorriso, 0);
if(Xorriso_change_is_pending(xorriso, 1))
Xorriso_option_end(xorriso, 2);