Displaying 2 results from an estimated 2 matches for "prealm".
Did you mean:
realm
2003 Jan 09
0
Building openssh-3.5p1 with new DES functions
...s statement, "creds" is not declared. (undeclared)
CREDENTIALS *creds;
---------------------^
cc: Error: sshconnect1.c, line 738: In the declaration of "pname", "ANAME_SZ" is not declared. (undeclared)
char buffer[4096], pname[ANAME_SZ], pinst[INST_SZ], prealm[REALM_SZ];
---------------------------------^
cc: Error: sshconnect1.c, line 738: In the declaration of "pinst", "INST_SZ" is not declared. (undeclared)
char buffer[4096], pname[ANAME_SZ], pinst[INST_SZ], prealm[REALM_SZ];
------------------------------------------------...
2002 Jan 24
1
PATCH: krb4/krb5/... names/patterns in auth_keys entries
...options;
+int user_key_allowed(struct passwd *, Key *);
static int
krb4_init(void *context)
@@ -220,6 +221,7 @@
socklen_t slen;
u_int cksum;
int r, s;
+ Key k;
s = packet_get_connection_in();
@@ -249,12 +251,27 @@
*adat.pinst ? "." : "", adat.pinst, adat.prealm);
/* Check ~/.klogin authorization now. */
- if (kuserok(&adat, authctxt->user) != KSUCCESS) {
- log("Kerberos v4 .klogin authorization failed for %s to "
- "account %s", *client, authctxt->user);
+ k.type = KEY_NAME;
+ k.name = *client;
+ k.name_type = &quo...