[6414] in Athena Bugs
7.1H attach: screwed up error message
daemon@ATHENA.MIT.EDU (John Carr)
Thu Nov 15 05:57:26 1990
To: bugs@ATHENA.MIT.EDU
Date: Thu, 15 Nov 90 05:57:15 EST
From: John Carr <jfc@ATHENA.MIT.EDU>
I made this change for the PS/2 (it was dumping core in this code).
*** /source/athena/bin.athena/attach/rpc.c Wed Nov 14 13:26:13 1990
--- rpc.c Thu Oct 4 16:13:46 1990
***************
*** 320,328 ****
{
fprintf(stderr, "%s: Could not get Kerberos ticket for filesystem %s\n",
progname, errname);
! fprintf(stderr, "%s: realm %s instance %s, kerberos error is: %s\n",
! realm, instance,
! krb_err_txt[status]);
}
}
error_status = ERR_KERBEROS;
--- 325,332 ----
{
fprintf(stderr, "%s: Could not get Kerberos ticket for filesystem %s\n",
progname, errname);
! fprintf(stderr, "\trealm %s instance %s, kerberos error is: %s\n",
! realm, instance, krb_err_txt[status]);
}
}
error_status = ERR_KERBEROS;
***************
*** 383,389 ****
error_status = ERR_HOST;
break;
case RPC_PROCUNAVAIL:
! fprintf(stderr, "%s: Warning: mount daemon on %s doesn't understand UID maps\n\t(filesystem %s)\n",
progname, host, errname);
return(SUCCESS);
default:
--- 387,393 ----
error_status = ERR_HOST;
break;
case RPC_PROCUNAVAIL:
! fprintf(stderr, "%s: Warning: mount daemon on %s doesn't understand UID maps\n\t(filesystem %s)",
progname, host, errname);
return(SUCCESS);
default: