diff --git a/doc/zzuf.1 b/doc/zzuf.1 index 714ac0b..2f738c3 100644 --- a/doc/zzuf.1 +++ b/doc/zzuf.1 @@ -63,7 +63,7 @@ and do not want it to fuzz files in the \fB/etc\fR directory. Multiple \fB\-E\fR flags can be specified, in which case files matching any one of the regular expressions will be ignored. .TP -\fB\-F\fR, \fB\-\-fork\fR=\fIchildren\fR +\fB\-F\fR, \fB\-\-max-forks\fR=\fIchildren\fR Specify the number of simultaneous children that can be run. This option is only useful if the \fB\-s\fR flag is used with an interval argument. .TP diff --git a/src/zzuf.c b/src/zzuf.c index 47d468a..ac86a6c 100644 --- a/src/zzuf.c +++ b/src/zzuf.c @@ -106,7 +106,7 @@ int main(int argc, char *argv[]) { "cmdline", 0, NULL, 'c' }, { "debug", 0, NULL, 'd' }, { "exclude", 1, NULL, 'E' }, - { "fork", 1, NULL, 'F' }, + { "max-forks", 1, NULL, 'F' }, { "help", 0, NULL, 'h' }, { "stdin", 0, NULL, 'i' }, { "include", 1, NULL, 'I' }, @@ -164,7 +164,7 @@ int main(int argc, char *argv[]) case 'r': /* --ratio */ setenv("ZZUF_RATIO", optarg, 1); break; - case 'F': /* --fork */ + case 'F': /* --max-forks */ parallel = atoi(optarg) > 1 ? atoi(optarg) : 1; break; case 'B': /* --max-bytes */