correct whitespace errors in readme files

Fix the trailing whitespace and leading spaces
before tabs in the readme files.

Change-Id: If20e528ddb28f82e4d3d1b1f03dec8670f914afc
Reviewed-on: http://gerrit.openafs.org/8877
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Reviewed-by: Ken Dreyer <ktdreyer@ktdreyer.com>
Reviewed-by: Jeffrey Altman <jaltman@your-file-system.com>
This commit is contained in:
Michael Meffie 2013-01-05 13:37:51 -05:00 committed by Jeffrey Altman
parent 5138c07abd
commit 8a17568fb4
19 changed files with 376 additions and 376 deletions

View File

@ -292,7 +292,7 @@ as appropriate:
AFSPRODUCT_VER_PATCH - Version Patch Number AFSPRODUCT_VER_PATCH - Version Patch Number
AFSPRODUCT_VER_BUILD - Version Build Number AFSPRODUCT_VER_BUILD - Version Build Number
CELLSERVDB_INSTALL - The default file name for the CellServDB CELLSERVDB_INSTALL - The default file name for the CellServDB
included in the install Package. included in the install Package.
CELLNAME_DEFAULT - The default home cell name. CELLNAME_DEFAULT - The default home cell name.
CELLSERVDB_WEB - The default web address to obtain CellServDB CELLSERVDB_WEB - The default web address to obtain CellServDB

View File

@ -115,7 +115,7 @@ then the stopd file should look something like this
kill -TERM `cat /local/stronghold/apache/logs/httpd.pid.afs` kill -TERM `cat /local/stronghold/apache/logs/httpd.pid.afs`
kill -TERM `cat /local/stronghold/apache/logs/httpd.pid` kill -TERM `cat /local/stronghold/apache/logs/httpd.pid`
POINTERS TO APACHE AND SSL:- POINTERS TO APACHE AND SSL:-

View File

@ -46,16 +46,16 @@ int main(int argc, char *argv[])
CFArrayRef arrayRef; CFArrayRef arrayRef;
if (!CFDictionaryGetValueIfPresent(login_dict, CFSTR("mechanisms"), if (!CFDictionaryGetValueIfPresent(login_dict, CFSTR("mechanisms"),
&arrayRef)) &arrayRef))
exit(1); exit(1);
CFMutableArrayRef newMechanisms = CFArrayCreateMutableCopy(NULL, 0, CFMutableArrayRef newMechanisms = CFArrayCreateMutableCopy(NULL, 0,
arrayRef); arrayRef);
if (!newMechanisms) if (!newMechanisms)
exit(1); exit(1);
CFIndex index = CFArrayGetFirstIndexOfValue(newMechanisms, CFIndex index = CFArrayGetFirstIndexOfValue(newMechanisms,
CFRangeMake(0, CFArrayGetCount(newMechanisms)), CFSTR("authinternal")); CFRangeMake(0, CFArrayGetCount(newMechanisms)), CFSTR("authinternal"));
if (index == -1) if (index == -1)
exit(1); exit(1);
@ -63,12 +63,12 @@ int main(int argc, char *argv[])
CFArraySetValueAtIndex(newMechanisms, index, CFSTR("newmech")); CFArraySetValueAtIndex(newMechanisms, index, CFSTR("newmech"));
CFMutableDictionaryRef new_login_dict CFMutableDictionaryRef new_login_dict
= CFDictionaryCreateMutableCopy(NULL, 0, login_dict); = CFDictionaryCreateMutableCopy(NULL, 0, login_dict);
CFDictionarySetValue(new_login_dict, CFSTR("mechanisms"), newMechanisms); CFDictionarySetValue(new_login_dict, CFSTR("mechanisms"), newMechanisms);
status = AuthorizationRightSet(authRef, LOGIN_RIGHT, new_login_dict, status = AuthorizationRightSet(authRef, LOGIN_RIGHT, new_login_dict,
NULL, NULL, NULL); NULL, NULL, NULL);
if (status) exit(1); if (status) exit(1);
} }