butc: consistently spell taskId parameter 18/13318/2
authorBenjamin Kaduk <kaduk@mit.edu>
Sun, 2 Sep 2018 21:37:44 +0000 (16:37 -0500)
committerBenjamin Kaduk <kaduk@mit.edu>
Fri, 30 Oct 2020 03:09:23 +0000 (23:09 -0400)
All but one RPC used the capitalization "taskId"; adjust the long
straggler for consistent style.

Change-Id: I996d96a4fc67af7f745bf67041c90390073ca9ea
Reviewed-on: https://gerrit.openafs.org/13318
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>

src/butc/tcprocs.c

index 5df0b42..e324d28 100644 (file)
@@ -353,7 +353,7 @@ STC_PerformRestore(struct rx_call *call, char *dumpSetName,
 
 static afs_int32
 SPerformRestore(struct rx_call *acid, char *dumpSetName,
-               tc_restoreArray *arestores, afs_int32 *taskID)
+               tc_restoreArray *arestores, afs_int32 *taskId)
 {
     struct dumpNode *newNode;
     statusP statusPtr;
@@ -366,7 +366,7 @@ SPerformRestore(struct rx_call *acid, char *dumpSetName,
     PROCESS pid;
 #endif
 
-    *taskID = 0;
+    *taskId = 0;
 
     if (callPermitted(acid) == 0)
        return (TC_NOTPERMITTED);
@@ -380,7 +380,7 @@ SPerformRestore(struct rx_call *acid, char *dumpSetName,
                               arestores->tc_restoreArray_len);
     newNode->arraySize = arestores->tc_restoreArray_len;
     CopyRestoreDesc(newNode->restores, arestores);
-    *taskID = newNode->taskID;
+    *taskId = newNode->taskID;
 
     /* should log the intent */