Make extra arguments be subdirs to go through.

This commit is contained in:
Poul-Henning Kamp 1995-03-19 21:26:00 +00:00
parent 8af57ca9dd
commit ec71951908
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7173

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
* $Id: ctm_scan.c,v 1.6 1994/09/26 06:00:55 phk Exp $
* $Id: ctm_scan.c,v 1.7 1994/12/03 22:54:04 phk Exp $
*
*/
#include <stdio.h>
@ -164,10 +164,19 @@ main(int argc, char **argv)
perror(argv[1]);
return 2;
}
argc--;
argv++;
}
/*
* Scan the directories recursively.
*/
return Do(".");
if (argc > 1) {
while (argc > 1) {
Do(argv[1]);
argc--;
argv++;
}
} else
return Do(".");
}