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

Cleanup executable status on src files. #372

Merged
merged 1 commit into from
Nov 22, 2023

Conversation

philljj
Copy link
Contributor

@philljj philljj commented Nov 22, 2023

These two src files had executable permissions:

$ find * -type f -executable | grep "\.[c,h]"
examples/wiot/wiot.h
examples/multithread/multithread.c

$ ls -l examples/wiot/wiot.h 
-rwxrwxr-x 1 jordan jordan 1122 Nov 22 10:52 examples/wiot/wiot.h
$ ls -l examples/multithread/multithread.c 
-rwxrwxr-x 1 jordan jordan 25332 Nov 22 10:52 examples/multithread/multithread.c

This PR fixes them:

$ find * -type f -executable | grep "\.[c,h]"

$ ls -l examples/wiot/wiot.h
-rw-rw-r-- 1 jordan jordan 1122 Nov 22 10:57 examples/wiot/wiot.h
$ ls -l examples/multithread/multithread.c 
-rw-rw-r-- 1 jordan jordan 25332 Nov 22 10:57 examples/multithread/multithread.c

@philljj philljj self-assigned this Nov 22, 2023
@dgarske dgarske merged commit 53d541f into wolfSSL:master Nov 22, 2023
6 checks passed
@philljj philljj deleted the cleanup_exe_file_status branch November 22, 2023 19:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants