-rw-r--r-- | noncore/unsupported/oipkg/pmipkg.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/unsupported/oipkg/pmipkg.cpp b/noncore/unsupported/oipkg/pmipkg.cpp index 4a8a389..d29036b 100644 --- a/noncore/unsupported/oipkg/pmipkg.cpp +++ b/noncore/unsupported/oipkg/pmipkg.cpp @@ -181,5 +181,6 @@ QStringList* PmIpkg::getList( QString packFileName, QString d ) } QString packFileDir = dest+"/"+statusDir+"/info/"+packFileName+".list"; - QFile f( packFileName ); + QFile f( packFileDir ); + qDebug("Try to open %s", packFileDir.latin1()); if ( ! f.open(IO_ReadOnly) ) { @@ -188,8 +189,10 @@ QStringList* PmIpkg::getList( QString packFileName, QString d ) packFileDir = "/"+statusDir+"/info/"+packFileName+".list"; f.setName( packFileDir ); + qDebug("Try to open %s", packFileDir.latin1()); if ( ! f.open(IO_ReadOnly) ) { qDebug(" Panik! Could not open"+packFileDir); out( "Could not open:\n"+packFileDir+"\n Panik!" ); + return (QStringList*)0; } } |