| 1 |
|
/* |
| 2 |
|
* |
| 3 |
|
* Patched version with stuff from the Debian's cdrtools. |
| 4 |
|
* Replaced various warnings/disclaimers with more simple ones. |
| 5 |
|
* |
| 6 |
|
* Eduard Bloch <blade@debian.org> |
| 7 |
|
*/ |
| 8 |
/* @(#)mkisofs.c 1.167 06/01/30 joerg */ |
/* @(#)mkisofs.c 1.167 06/01/30 joerg */ |
| 9 |
#ifndef lint |
#ifndef lint |
| 10 |
static char sccsid[] = |
static char sccsid[] = |
| 1037 |
{ |
{ |
| 1038 |
const char *program_name = "mkisofs"; |
const char *program_name = "mkisofs"; |
| 1039 |
|
|
| 1040 |
fprintf(stderr, "Usage: %s [options] file...\n", program_name); |
fprintf(stderr, "Usage: %s [options] -o file directory ...\n", program_name); |
| 1041 |
fprintf(stderr, "\nUse %s -help\n", program_name); |
fprintf(stderr, "\nUse %s -help\n", program_name); |
| 1042 |
fprintf(stderr, "to get a list of valid options.\n"); |
fprintf(stderr, "to get a list of valid options.\n"); |
| 1043 |
fprintf(stderr, "This version of mkisofs includes the unofficial iconv-patch\nfrom http://users.utu.fi/jahhein/mkisofs/\nReport errors to cdrtools@packages.debian.org\n"); |
fprintf(stderr, |
| 1044 |
fprintf(stderr, "This version of mkisofs includes the unofficial JTE patch\nfrom http://www.einval.com/~steve/software/JTE/\nReport errors to steve-jte@einval.com\n"); |
"\nNOTE: This version of mkisofs differs from the one published by Eric Youngdale\n" |
| 1045 |
|
"and from the one included in cdrtools (by Joerg Schilling).\n" |
| 1046 |
|
"It provides a different set of features and has different problems.\n" |
| 1047 |
|
"Report errors to debburn-devel@lists.alioth.debian.org.\n"); |
| 1048 |
|
|
| 1049 |
exit(excode); |
exit(excode); |
| 1050 |
} |
} |
| 1140 |
fprintf(stderr, "%s\n", ld_options[i].doc); |
fprintf(stderr, "%s\n", ld_options[i].doc); |
| 1141 |
} |
} |
| 1142 |
} |
} |
| 1143 |
fprintf(stderr, "This version of mkisofs includes the unofficial iconv-patch\nfrom http://users.utu.fi/jahhein/mkisofs/\nReport errors to cdrtools@packages.debian.org\n"); |
fprintf(stderr, |
| 1144 |
fprintf(stderr, "This version of mkisofs includes the unofficial JTE patch\nfrom http://www.einval.com/~steve/software/JTE/\nReport errors to steve-jte@einval.com\n"); |
"\nNOTE: This version of mkisofs differs from the one published by Eric Youngdale\n" |
| 1145 |
|
"and from the one included in cdrtools (by Joerg Schilling).\n" |
| 1146 |
|
"It provides a different set of features and has different problems.\n" |
| 1147 |
|
"Report errors to debburn-devel@lists.alioth.debian.org.\n"); |
| 1148 |
exit(excode); |
exit(excode); |
| 1149 |
} |
} |
| 1150 |
|
|