diff options
Diffstat (limited to 'kppp/runtests.cpp')
-rw-r--r-- | kppp/runtests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kppp/runtests.cpp b/kppp/runtests.cpp index 01e1437d..e4710d79 100644 --- a/kppp/runtests.cpp +++ b/kppp/runtests.cpp @@ -191,7 +191,7 @@ int runTests() { // Test pre-1: check if the user is allowed to dial-out if(access("/etc/kppp.allow", R_OK) == 0 && getuid() != 0) { - bool access = FALSE; + bool access = false; FILE *f; if((f = fopen("/etc/kppp.allow", "r")) != NULL) { char buf[2048]; // safe @@ -204,7 +204,7 @@ int runTests() { continue; if((uid_t)uidFromName(TQFile::encodeName(s)) == getuid()) { - access = TRUE; + access = true; fclose(f); f = NULL; } |