mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 06:50:12 +00:00
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:
parent
5138c07abd
commit
8a17568fb4
@ -292,7 +292,7 @@ as appropriate:
|
||||
AFSPRODUCT_VER_PATCH - Version Patch Number
|
||||
AFSPRODUCT_VER_BUILD - Version Build Number
|
||||
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.
|
||||
CELLSERVDB_WEB - The default web address to obtain CellServDB
|
||||
|
||||
|
@ -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`
|
||||
kill -TERM `cat /local/stronghold/apache/logs/httpd.pid`
|
||||
|
||||
|
||||
POINTERS TO APACHE AND SSL:-
|
||||
|
@ -46,16 +46,16 @@ int main(int argc, char *argv[])
|
||||
|
||||
CFArrayRef arrayRef;
|
||||
if (!CFDictionaryGetValueIfPresent(login_dict, CFSTR("mechanisms"),
|
||||
&arrayRef))
|
||||
&arrayRef))
|
||||
exit(1);
|
||||
|
||||
CFMutableArrayRef newMechanisms = CFArrayCreateMutableCopy(NULL, 0,
|
||||
arrayRef);
|
||||
arrayRef);
|
||||
if (!newMechanisms)
|
||||
exit(1);
|
||||
|
||||
CFIndex index = CFArrayGetFirstIndexOfValue(newMechanisms,
|
||||
CFRangeMake(0, CFArrayGetCount(newMechanisms)), CFSTR("authinternal"));
|
||||
CFRangeMake(0, CFArrayGetCount(newMechanisms)), CFSTR("authinternal"));
|
||||
|
||||
if (index == -1)
|
||||
exit(1);
|
||||
@ -63,12 +63,12 @@ int main(int argc, char *argv[])
|
||||
CFArraySetValueAtIndex(newMechanisms, index, CFSTR("newmech"));
|
||||
|
||||
CFMutableDictionaryRef new_login_dict
|
||||
= CFDictionaryCreateMutableCopy(NULL, 0, login_dict);
|
||||
= CFDictionaryCreateMutableCopy(NULL, 0, login_dict);
|
||||
|
||||
CFDictionarySetValue(new_login_dict, CFSTR("mechanisms"), newMechanisms);
|
||||
|
||||
status = AuthorizationRightSet(authRef, LOGIN_RIGHT, new_login_dict,
|
||||
NULL, NULL, NULL);
|
||||
NULL, NULL, NULL);
|
||||
|
||||
if (status) exit(1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user