Skip to content
Open
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 psasim/src/client.c
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ uint32_t psa_version(uint32_t sid)
VERSION_REQUEST,
0,
NULL);
INFO("psa_version: Recieved from server %d\n", ret);
INFO("psa_version: Received from server %d\n", ret);
if (ret > 0) {
return ret;
}
Expand Down
2 changes: 1 addition & 1 deletion psasim/test/client.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ int main()

printf("My iovec size should be %lu\n", invecs[0].len);
printf("Answer to my call was %d (with invec)\n", psa_call(h, type, invecs, 1, outvecs, 1));
printf("Here's the payload I recieved: %s\n", output);
printf("Here's the payload I received: %s\n", output);
printf("Apparently the server wrote %lu bytes in outvec %d\n", outvecs[0].len, 0);
puts("Closing handle");
psa_close(h);
Expand Down
2 changes: 1 addition & 1 deletion psasim/test/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ int psa_sha256_main()
puts("Failed to retrieve message");
}
} else if (SIGSTP_SIG & signals) {
puts("Recieved SIGSTP signal. Gonna EOI it.");
puts("Received SIGSTP signal. Gonna EOI it.");
psa_eoi(SIGSTP_SIG);
} else if (SIGINT_SIG & signals) {
puts("Handling interrupt!\n");
Expand Down