[NET] Reorganize and improve the help texts (3/X)

- Add help texts for the START and STOP commands.
- Add text for the CONFIG command.
This commit is contained in:
Eric Kohl 2018-04-02 14:53:12 +02:00
parent b51b99e766
commit 925176af71
12 changed files with 142 additions and 56 deletions

View file

@ -70,9 +70,6 @@ done:
if (ServerInfo != NULL)
NetApiBufferFree(ServerInfo);
if (Status == NERR_Success)
ConResPuts(StdOut, IDS_ERROR_NO_ERROR);
return 0;
}
@ -161,8 +158,11 @@ cmdConfig(
}
else
{
ConResPuts(StdOut, IDS_CONFIG_TEXT);
}
if (result == 0)
ConResPuts(StdOut, IDS_ERROR_NO_ERROR);
return result;
}