Skip to content

Optimized RAM using #22

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

Merged
merged 1 commit into from
Jan 23, 2024
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
Binary file added spynix
Binary file not shown.
2 changes: 1 addition & 1 deletion src/hlp/hlp_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,5 @@ void print_hlp_info(void)
void print_ver_info(void)
{
print_banner();
printf("spynix v4.0.1\n\nFor more info visit: https://github.com/git-user-cpp/spynix\n");
printf("spynix v4.0.2\n\nFor more info visit: https://github.com/git-user-cpp/spynix\n");
}
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ int main(int argc, char **argv)
}
else if(strcmp(argv[1], "-net") == 0)
{
char host_name[100];
char host_name[30];
printf("Enter a hostname or IP address: ");
fgets(host_name, sizeof(host_name), stdin);
host_name[strcspn(host_name, "\n")] = '\0';
Expand Down