#24: Add length check on topdomain, <= 128 chars

This commit is contained in:
Erik Ekman 2007-07-11 23:25:03 +00:00
parent 4e582e98c6
commit 17c41d87bc
2 changed files with 8 additions and 0 deletions

View File

@ -582,6 +582,10 @@ main(int argc, char **argv)
usage();
topdomain = strdup(argv[1]);
if (strlen(topdomain) > 128 || topdomain[0] == '.') {
printf("Use a topdomain max 128 chars long. Do not start it with a dot.\n");
usage();
}
if(username) {
pw = getpwnam(username);

View File

@ -521,6 +521,10 @@ main(int argc, char **argv)
usage();
topdomain = strdup(argv[1]);
if (strlen(topdomain) > 128 || topdomain[0] == '.') {
printf("Use a topdomain max 128 chars long. Do not start it with a dot.\n");
usage();
}
if (username) {
pw = getpwnam(username);