diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 13:43:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-23 11:15:45 +0900 |
commit | a8d22ee1a24285c8e493489741b712e6e075da04 (patch) | |
tree | 1d7a010b684d2f76550c7c0521c5888a98361b6d /utilities | |
parent | 69645a9e6d89ac4de5adf1df868f6cd12617390c (diff) | |
download | smb4k-r14.1.4.tar.gz smb4k-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ceb2c2e93f81f1222f20decc7efbe6d4f2ddf2cf)
Diffstat (limited to 'utilities')
-rw-r--r-- | utilities/smb4k_umount.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utilities/smb4k_umount.cpp b/utilities/smb4k_umount.cpp index 0fea963..550544a 100644 --- a/utilities/smb4k_umount.cpp +++ b/utilities/smb4k_umount.cpp @@ -156,12 +156,12 @@ bool check_filesystem( const char *path, const char *fs ) if ( err_code != EIO && err_code != EACCES ) { - // ok is still FALSE + // ok is still false cerr << "smb4k_umount: " << strerror( err_code ) << endl; } else { - ok = true; // Bypass the check below, because it would yield ok == FALSE + ok = true; // Bypass the check below, because it would yield ok == false // and we want to be able to unmount broken shares as well. } @@ -204,7 +204,7 @@ bool check_filesystem( const char *path, const char *fs ) #endif else { - // ok is still FALSE. + // ok is still false. cerr << "smb4k_umount: Wrong file system specified" << endl; } |