git-svn-id: https://openitg.svn.sourceforge.net/svnroot/openitg@332 83fadc84-e282...
authorPatrick McIlroy <itgpmc@gmail.com>
Sun, 18 May 2008 06:09:08 +0000 (06:09 +0000)
committerPatrick McIlroy <itgpmc@gmail.com>
Sun, 18 May 2008 06:09:08 +0000 (06:09 +0000)
src/RageFileDriverCrypt.cpp

index 41ced5d..4c3bf9f 100755 (executable)
@@ -47,15 +47,6 @@ RageFileDriverCrypt::RageFileDriverCrypt( CString root_, CString secret_):RageFi
        root = root_;\r
 }\r
 \r
-static CString MakeTempFilename( const CString &sPath )\r
-{\r
-       /* "Foo/bar/baz" -> "Foo/bar/new.baz.new".  Both prepend and append: we don't\r
-        * want a wildcard search for the filename to match (foo.txt.new matches foo.txt*),\r
-        * and we don't want to have the same extension (so "new.foo.sm" doesn't show up\r
-        * in *.sm). */\r
-       return Dirname(sPath) + "new." + Basename(sPath) + ".new";\r
-}\r
-\r
 RageFileBasic *RageFileDriverCrypt::Open( const CString &path, int mode, int &err )\r
 {\r
        CString sPath = root + path;\r
@@ -76,7 +67,6 @@ RageFileBasic *RageFileDriverCrypt::Open( const CString &path, int mode, int &er
 \r
 RageFileBasic *RageFileObjCrypt::Copy() const\r
 {\r
-        int iErr;\r
        crypt_file *cpCf = new crypt_file;\r
        cpCf->path = cf->path;\r
        memcpy(cpCf->ctx, cf->ctx, sizeof(cf->ctx));\r