wolfSSL / wolfMQTT

wolfMQTT is a small, fast, portable MQTT client implementation, including support for TLS 1.3.
https://www.wolfssl.com
GNU General Public License v2.0
518 stars 156 forks source link

Cleanup executable status on src files. #372

Closed philljj closed 7 months ago

philljj commented 7 months ago

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