[Slim-Checkins] r33703 - /7.7/trunk/server/Slim/Utils/DbCache.pm
| Newsgroups | gmane.music.equipment.slimdevices.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mherger
Date: Mon Nov 14 02:54:54 2011
New Revision: 33703
URL: http://svn.slimdevices.com/slim?rev=33703&view=rev
Log:
Bug: n/a
Description: fix typo
Modified:
7.7/trunk/server/Slim/Utils/DbCache.pm
Modified: 7.7/trunk/server/Slim/Utils/DbCache.pm
URL: http://svn.slimdevices.com/slim/7.7/trunk/server/Slim/Utils/DbCache.pm?rev=33703&r1=33702&r2=33703&view=diff
==============================================================================
--- 7.7/trunk/server/Slim/Utils/DbCache.pm (original)
+++ 7.7/trunk/server/Slim/Utils/DbCache.pm Mon Nov 14 02:54:54 2011
@@ -189,7 +189,7 @@
my $namespace = $self->{namespace};
# namespace should not be longer than 8 characters on Windows, as it was causing DB corruption
- if ( main::ISWINDOWS && length($namespace > 8) ) {
+ if ( main::ISWINDOWS && length($namespace) > 8 ) {
$namespace = lc(substr($namespace, 0, 4)) . substr(Digest::MD5::md5_hex($namespace), 0, 4);
}