Skip to content
This repository was archived by the owner on Jun 20, 2022. It is now read-only.

Commit d17d4b8

Browse files
committed
Fix typo
1 parent 3d40f85 commit d17d4b8

File tree

1 file changed

+1
-1
lines changed
  • CSE 381 (Systems II - OS, Currency, Virtualization, and Security)/Networking

1 file changed

+1
-1
lines changed

CSE 381 (Systems II - OS, Currency, Virtualization, and Security)/Networking/server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ int main(int argc, char *argv[]) {
3535
server_address.sin_port = htons(port_number);
3636
server_address.sin_addr.s_addr = INADDR_ANY;
3737

38-
// Apply scoket configuration and listen for connections
38+
// Apply socket configuration and listen for connections
3939
if (bind(socket_file_descriptor, (struct sockaddr *) &server_address, sizeof(server_address)) < 0) {
4040
fputs("Cannot bind socket\n", stderr);
4141
return EXIT_FAILURE;

0 commit comments

Comments
 (0)