Skip to content

Commit d8db556

Browse files
Fixed typo
1 parent 693393e commit d8db556

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/common/online.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -363,17 +363,17 @@ int main(int argc, char *argv[]) {
363363

364364
if (argc < 5) {
365365
printf("Error: not enough arguments given.\nUsage: 'online startpath endpath -p password', where:"
366-
"\n - startpath is ABSOLUTE path to the start points file."
367-
"\n - endpath is ABSOLUTE path to the end points file."
366+
"\n - startpath is the path to the start points file."
367+
"\n - endpath is the path to the end points file."
368368
"\n - password is the plain text password you're looking to crack. The program will thus hash it first, then try to crack it."
369369
"\nOther usage: 'online startpath endpath -h hash', where hash is the NTLM hash you're looking to crack.\n\n");
370370
exit(1);
371371
}
372372

373373
if (argc > 5) {
374374
printf("Error: too many arguments given.\nUsage: 'online startpath endpath -p password', where:"
375-
"\n - startpath is ABSOLUTE path to the start points file."
376-
"\n - endpath is ABSOLUTE path to the end points file."
375+
"\n - startpath is the path to the start points file."
376+
"\n - endpath is the path to the end points file."
377377
"\n - password is the plain text password you're looking to crack. The program will thus hash it first, then try to crack it."
378378
"\nOther usage: 'online startpath endpath -h hash', where hash is the NTLM hash you're looking to crack.\n\n");
379379
exit(1);

0 commit comments

Comments
 (0)