* No longer pass explicit cache tuning options to afsd and instead let
OpenAFS automatically choose tuning based on the cache size.
+ * Accept trailing whitespace in ThisCell.
* Change the documentation of afsd -shutdown to be less dire and more
accurate. Thanks, Daniel J. Priem. (Closes: #394990)
* Document (at least partially) AFS's mapping of Kerberos v5 principal
J. Priem. (Closes: #394832)
* Document that aklog -setpag may not always work.
- -- Russ Allbery <rra@debian.org> Tue, 7 Nov 2006 16:41:56 -0800
+ -- Russ Allbery <rra@debian.org> Wed, 15 Nov 2006 15:31:28 -0800
openafs (1.4.2-2) unstable; urgency=low
p = strchr(tbuffer, '\n');
if (p)
*p = '\0';
+ p = tbuffer + strlen(tbuffer) - 1;
+ while (p > tbuffer && isspace(*p))
+ p--;
+ *p = '\0';
adir->cellName = strdup(tbuffer);
return 0;