Changeset 615
- Timestamp:
- May 9, 2011, 12:55:18 AM (12 years ago)
- Location:
- abuse/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/TODO
r613 r615 15 15 ABUSE-TOOL 16 16 ---------- 17 - segfault with "abuse-tool foo.spe put 1 2" (missing argument)18 - add an option to display an md5sum or something19 17 - allow to query ids by name rather than by number 20 18 -
abuse/trunk/src/tool/abuse-tool.cpp
r585 r615 77 77 break; 78 78 case CMD_PUT: 79 minargc = 5;79 minargc = 6; 80 80 break; 81 81 case CMD_MOVE: … … 96 96 break; 97 97 case CMD_PUTPCX: 98 minargc = 5;98 minargc = 6; 99 99 break; 100 100 } … … 102 102 if (argc < minargc) 103 103 { 104 fprintf(stderr, "abuse-tool: too few arguments tocommand `%s'\n",104 fprintf(stderr, "abuse-tool: too few arguments for command `%s'\n", 105 105 argv[2]); 106 106 return EXIT_FAILURE;
Note: See TracChangeset
for help on using the changeset viewer.