Fix fdo#49720: Dropped unnecessary "sh -c" from popen call
Change-Id: I5de4ce4e26d995c447c99c8558f621dba6cdf110
This commit is contained in:
parent
5386b7633d
commit
a50a33c3a7
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ PaperInfo PaperInfo::getSystemDefaultPaper()
|
|||
|
||||
// try libpaper
|
||||
// #i78617# workaround missing paperconf command
|
||||
FILE* pPipe = popen( "sh -c paperconf 2>/dev/null", "r" );
|
||||
FILE* pPipe = popen( "paperconf 2>/dev/null", "r" );
|
||||
if( pPipe )
|
||||
{
|
||||
Paper ePaper = PAPER_USER;
|
||||
|
|
Loading…
Reference in a new issue