diff options
Diffstat (limited to '')
-rw-r--r-- | src/command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c index d87b7786c..72742e993 100644 --- a/src/command.c +++ b/src/command.c @@ -786,7 +786,7 @@ int processCommandInternal(FILE * fp, unsigned int * permission, } int proccessListOfCommands(FILE * fp, int * permission, int * expired, - List * list) + int listOK, List * list) { ListNode * node = list->firstNode; ListNode * tempNode; @@ -804,6 +804,7 @@ int proccessListOfCommands(FILE * fp, int * permission, int * expired, deleteNodeFromList(list,node); node = tempNode; if(ret!=0 || (*expired)!=0) node = NULL; + else if(listOK) myfprintf(fp, "list_OK\n"); command_listNum++; } |