diff options
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; } |