[yast-commit] r41130 - in /branches/SuSE-Linux-10_3-Branch/storage: libstorage/src/Volume.h package/yast2-storage.changes
Author: fehr Date: Thu Sep 27 11:19:57 2007 New Revision: 41130 URL: http://svn.opensuse.org/viewcvs/yast?rev=41130&view=rev Log: fix wrong display of cryptotab instead of fstab Modified: branches/SuSE-Linux-10_3-Branch/storage/libstorage/src/Volume.h branches/SuSE-Linux-10_3-Branch/storage/package/yast2-storage.changes Modified: branches/SuSE-Linux-10_3-Branch/storage/libstorage/src/Volume.h URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Linux-10_3-Branch/storage/libstorage/src/Volume.h?rev=41130&r1=41129&r2=41130&view=diff ============================================================================== --- branches/SuSE-Linux-10_3-Branch/storage/libstorage/src/Volume.h (original) +++ branches/SuSE-Linux-10_3-Branch/storage/libstorage/src/Volume.h Thu Sep 27 11:19:57 2007 @@ -157,7 +157,9 @@ string sizeString() const; string bootMount() const; bool optNoauto() const; - bool inCryptotab() const { return( encryption!=ENC_LUKS && !optNoauto() ); } + bool inCryptotab() const { return( encryption!=ENC_NONE && + encryption!=ENC_LUKS && + !optNoauto() ); } bool inCrypttab() const { return( encryption==ENC_LUKS && !optNoauto() ); } virtual void print( std::ostream& s ) const { s << *this; } int getFreeLoop(); Modified: branches/SuSE-Linux-10_3-Branch/storage/package/yast2-storage.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Linux-10_3-Branch/storage/package/yast2-storage.changes?rev=41130&r1=41129&r2=41130&view=diff ============================================================================== --- branches/SuSE-Linux-10_3-Branch/storage/package/yast2-storage.changes (original) +++ branches/SuSE-Linux-10_3-Branch/storage/package/yast2-storage.changes Thu Sep 27 11:19:57 2007 @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Thu Sep 27 11:18:15 CEST 2007 - fehr@suse.de + +- fix wrong display of cryptotab instead of fstab + +------------------------------------------------------------------- Mon Sep 24 13:00:18 CEST 2007 - fehr@suse.de - prevent crash with invalid dmraid data (#327342) -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
fehr@svn.opensuse.org