Merge pull request #43 from Bandie/master

Make auth file readable to users. (Fixes #42)
This commit is contained in:
Bandie 2018-04-06 10:21:46 +02:00 committed by GitHub
commit f360235295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ int writePasswords(char pw[][99]){
fclose(f);
chmod(PPASSFILE, 0600);
chmod(PPASSFILE, 0644);
return 0;
}