search for: max_authkeyfiles

Displaying 1 result from an estimated 1 matches for "max_authkeyfiles".

Did you mean: max_authkeys_files
2002 Jan 23
0
[PATCH] Add multiple AuthorizedKeyFiles options
...etc/ssh_keys/%u */ case sAuthorizedKeysFile: - case sAuthorizedKeysFile2: - charptr = (opcode == sAuthorizedKeysFile ) ? - &options->authorized_keys_file : - &options->authorized_keys_file2; + intptr = &options->num_authorized_keys_files; + if (*intptr >= MAX_AUTHKEYFILES) + fatal("%s line %d: too many authorized keys " + "files specified (max %d).", + filename, linenum, MAX_AUTHKEYFILES); + + charptr = &options->authorized_keys_files[*intptr]; goto parse_filename; case sClientAliveInterval: Index: servconf.h...