Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #84, Correct comment and event message typos #82

Merged
merged 2 commits into from
Sep 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Guide-Creating-Table-files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ Note(s)
--------

1. If you are getting install errors when you do a "make install", make sure your table's output name
is consistence in all program files.
is consistent in all program files.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ CREATING THE UTILITY:
been updated to look for the elf2cfetbl utility in the correct place.
In this case, check the file:
<path-to-cfe>/cfe/fsw/cfe-core/src/make/table-rules.mak
In this file, make sure the table rule looke like this:
In this file, make sure the table rule looks like this:
#
# Default table rule
#
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To report a vulnerability for the elf2cfetbl subsystem please [submit an issue](

For general cFS vulnerabilities please [open a cFS framework issue](https://github.com/nasa/cfs/issues/new/choose) and see our [top-level security policy](https://github.com/nasa/cFS/security/policy) for additional information.

In either case please use the "Bug Report" template and provide as much information as possible. Apply appropraite labels for each report. For security related reports, tag the issue with the "security" label.
In either case please use the "Bug Report" template and provide as much information as possible. Apply appropriate labels for each report. For security related reports, tag the issue with the "security" label.

## Testing

Expand Down
4 changes: 2 additions & 2 deletions elf2cfetbl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,7 @@ void OutputHelpInfo(void)
printf(" -Scccc specifies a Spacecraft ID as a 4 byte string to be put into the table file file "
"header.\n");
printf(" cccc represents the 4 ASCII characters that will be encoded into the 32 bit "
"Spacecaft ID field.\n");
"Spacecraft ID field.\n");
printf(" examples: -SMMS1 or -SQQ#2\n");
printf(" -p# specifies a Processor ID to be put into file header.\n");
printf(" # can be specified as decimal, octal (starting with a zero), or hex (starting "
Expand Down Expand Up @@ -1626,7 +1626,7 @@ int32 GetElfHeader(void)

if (NumHdrsRead != 1)
{
printf("Experienced error attempting to read remaining sELF Header from file '%s'\n", SrcFilename);
printf("Experienced error attempting to read remaining ELF Header from file '%s'\n", SrcFilename);
return FAILED;
}

Expand Down
2 changes: 1 addition & 1 deletion elf2cfetbl_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@
#define ELF2CFETBL_VERSION_STRING \
" elf2cfetbl Development Build\n" \
" " ELF2CFETBL_VERSION " (Codename: Bootes)\n" /* Codename for current development */ \
" Last Offical Release: elf2cfetbl v3.1.0" /* For full support please use official release version */
" Last Official Release: elf2cfetbl v3.1.0" /* For full support please use official release version */

#endif /* ELF2CFETBL_VERSION_H */