[OpenAFS] 1.3.70 comments?
Derrick J Brashear
shadow@dementia.org
Wed, 18 Aug 2004 21:20:55 -0400 (EDT)
This message is in MIME format. The first part should be readable text,
while the remaining parts are likely unreadable without MIME-aware tools.
---559023410-925519912-1092878455=:8437
Content-Type: TEXT/PLAIN; charset=iso-8859-1; format=flowed
Content-Transfer-Encoding: 8BIT
On Wed, 18 Aug 2004, [iso-8859-1] Pär Aronsson wrote:
> More on klog.
>
> 1.3.70 works fine on my Suse 9.1, with linux-2.6, but for one thing.
> Klog produces the following:
> $ klog
> Password:
> Unable to authenticate to AFS because AuthServer returned incorrect response.
>
> The kdc is kaserver from the official openafs-1.2.10 rpm files for Red Hat 9.
> With a client using openafs-1.2.11 I'm able to obtain tokens from the server.
>
> A similar problem has been reported before, see
> https://lists.openafs.org/pipermail/openafs-devel/2002-September/008365.html.
>
> Does anyone else experience this as well?
> If it's a bug I'll be happy to submit it to the bugtracker.
Well, the mentioned patch was reverted and still is.
I suppose you could try this patch:
--- authclient.c 11 Aug 2004 15:45:38 -0000 1.15
+++ src/kauth/authclient.c 19 Aug 2004 01:20:38 -0000
@@ -378,7 +378,8 @@
if (caller) {
chkstr(caller->name);
chkstr(caller->instance);
- chkstr(caller->cell);
+ if (strcmp(caller->cell, ""))
+ chkstr(caller->cell);
} else {
chkstr(0);
chkstr(0);
---559023410-925519912-1092878455=:8437--