summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sshd.c b/sshd.c
index 22eabcda8..88ce79028 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1148,6 +1148,13 @@ main(int ac, char **av)
1148 options.kerberos_authentication = 0; 1148 options.kerberos_authentication = 0;
1149 } 1149 }
1150#endif /* KRB4 */ 1150#endif /* KRB4 */
1151#ifdef AFS
1152 /* If machine has AFS, set process authentication group. */
1153 if (k_hasafs()) {
1154 k_setpag();
1155 k_unlog();
1156 }
1157#endif /* AFS */
1151 1158
1152 packet_set_nonblocking(); 1159 packet_set_nonblocking();
1153 1160