Displaying 1 result from an estimated 1 matches for "max_chroot_us".
2002 Jul 04
4
Chroot patch (v3.4p1)
...s },
{ "denygroups", sDenyGroups },
{ "ciphers", sCiphers },
@@ -779,6 +780,16 @@
}
break;
+ case sChrootUsers:
+ while ((arg = strdelim(&cp)) && *arg != '\0') {
+ if (options->num_chroot_users >= MAX_CHROOT_USERS)
+ fatal( "%s line %d: too many chroot users.",
+ filename, linenum);
+ options->chroot_users[options->num_chroot_users++] =
+ xstrdup(arg);
+ }
+...