Changeset 1640 for zzuf/trunk/src/zzuf.c
- Timestamp:
- Jan 10, 2007, 4:22:09 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/src/zzuf.c
r1634 r1640 119 119 { "stdin", 0, NULL, 'i' }, 120 120 { "include", 1, NULL, 'I' }, 121 { "md5", 0, NULL, ' M' },121 { "md5", 0, NULL, 'm' }, 122 122 { "network", 0, NULL, 'n' }, 123 123 { "protect", 1, NULL, 'P' }, … … 132 132 { "version", 0, NULL, 'v' }, 133 133 }; 134 int c = getopt_long(argc, argv, "B:cC:dE:F:iI: MnP:qr:R:s:ST:xhv",134 int c = getopt_long(argc, argv, "B:cC:dE:F:iI:mnP:qr:R:s:ST:xhv", 135 135 long_options, &option_index); 136 136 # else 137 137 # define MOREINFO "Try `%s -h' for more information.\n" 138 int c = getopt(argc, argv, "B:cC:dE:F:iI: MnP:qr:R:s:ST:xhv");138 int c = getopt(argc, argv, "B:cC:dE:F:iI:mnP:qr:R:s:ST:xhv"); 139 139 # endif 140 140 if(c == -1) … … 179 179 } 180 180 break; 181 case ' M': /* --md5 */181 case 'm': /* --md5 */ 182 182 md5 = 1; 183 183 break; … … 665 665 static void usage(void) 666 666 { 667 printf("Usage: zzuf [-cdi MnqSx] [-r ratio] [-s seed | -s start:stop]\n");667 printf("Usage: zzuf [-cdimnqSx] [-r ratio] [-s seed | -s start:stop]\n"); 668 668 printf(" [-F forks] [-C crashes] [-B bytes] [-T seconds]\n"); 669 669 printf(" [-P protect] [-R refuse]\n"); … … 688 688 printf(" -i, --stdin fuzz standard input\n"); 689 689 printf(" -I, --include <regex> only fuzz files matching <regex>\n"); 690 printf(" - M, --md5 compute the output's MD5 hash\n");690 printf(" -m, --md5 compute the output's MD5 hash\n"); 691 691 printf(" -n, --network fuzz network input\n"); 692 692 printf(" -P, --protect <list> protect bytes and characters in <list>\n"); … … 710 710 printf(" -i fuzz standard input\n"); 711 711 printf(" -I <regex> only fuzz files matching <regex>\n"); 712 printf(" - Mcompute the output's MD5 hash\n");712 printf(" -m compute the output's MD5 hash\n"); 713 713 printf(" -n fuzz network input\n"); 714 714 printf(" -P <list> protect bytes and characters in <list>\n");
Note: See TracChangeset
for help on using the changeset viewer.