1 Aug
2016
1 Aug
'16
11:18 a.m.
Hi, Looks like a copy-paste issue in commit 7c8a9b2ae5884cc8a15e31954768befdfd9442fe The same value (m_config->logFilePattern()) is already printed out several lines above (line 2130). diff --git a/src/prtget.cpp b/src/prtget.cpp index 3d9863f..f22214c 100644 --- a/src/prtget.cpp +++ b/src/prtget.cpp @@ -2142,7 +2142,7 @@ void PrtGet::dumpConfig() cout.setf( ios::left, ios::adjustfield ); cout.width( 20 ); cout.fill( ' ' ); - cout << "Pkgmk settings: " << m_config->logFilePattern() << endl; + cout << "Pkgmk settings:" << endl; cout.setf( ios::left, ios::adjustfield ); cout.width( 20 ); cout.fill( ' ' ); -- Vitaly Sinilin <vs@kp4.ru>