summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/modulesinfo.cpp
Unidiff
Diffstat (limited to 'noncore/settings/sysinfo/modulesinfo.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/modulesinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/sysinfo/modulesinfo.cpp b/noncore/settings/sysinfo/modulesinfo.cpp
index 29cce90..7abad69 100644
--- a/noncore/settings/sysinfo/modulesinfo.cpp
+++ b/noncore/settings/sysinfo/modulesinfo.cpp
@@ -145,25 +145,25 @@ void ModulesInfo::slotSendClicked()
145 if ( stream ) 145 if ( stream )
146 pclose( stream ); 146 pclose( stream );
147 } 147 }
148 148
149} 149}
150 150
151void ModulesInfo::viewModules( QListViewItem *modules ) 151void ModulesInfo::viewModules( QListViewItem *modules )
152{ 152{
153 QString modname = modules->text( 0 ); 153 QString modname = modules->text( 0 );
154 QString capstr = "Module: "; 154 QString capstr = "Module: ";
155 capstr.append( modname ); 155 capstr.append( modname );
156 ModulesDtl->setCaption( capstr ); 156 ModulesDtl->setCaption( capstr );
157 QString command = "/sbin/modinfo -nad "; 157 QString command = "/sbin/modinfo ";
158 command.append( modname ); 158 command.append( modname );
159 FILE* modinfo = popen( command, "r" ); 159 FILE* modinfo = popen( command, "r" );
160 160
161 if ( modinfo ) 161 if ( modinfo )
162 { 162 {
163 char line[200]; 163 char line[200];
164 ModulesDtl->detailView->setText( " Details:\n------------\n" ); 164 ModulesDtl->detailView->setText( " Details:\n------------\n" );
165 165
166 while( true ) 166 while( true )
167 { 167 {
168 int success = fscanf( modinfo, "%[^\n]\n", line ); 168 int success = fscanf( modinfo, "%[^\n]\n", line );
169 if ( success == EOF ) 169 if ( success == EOF )