Skip to content

Commit

Permalink
Merge pull request #15 from mvidner/master
Browse files Browse the repository at this point in the history
A syntax fix + test case for a leftover in pull request #13.
Comments resolved personally
  • Loading branch information
mchf committed Aug 20, 2012
2 parents dc9147c + 62e76ca commit 7933a19
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lan/hardware.ycp
Expand Up @@ -12,6 +12,7 @@
textdomain "network";

import "Arch";
import "CWM";
import "Label";
import "Lan";
import "NetworkInterfaces";
Expand Down Expand Up @@ -80,7 +81,7 @@ configured with the same module name, the options will be merged while saving.</

_("<p>If you specify options via <b>Ethtool options</b>, ifup will call ethtool with these options.</p>\n");

if( isNewDevice() && !Arch::s390() ))
if( isNewDevice() && !Arch::s390() )
{

/* Manual dialog help 4/4 */
Expand Down
Empty file added testsuite/tests/include.err
Empty file.
Empty file added testsuite/tests/include.out
Empty file.
4 changes: 4 additions & 0 deletions testsuite/tests/include.ycp
@@ -0,0 +1,4 @@
// A basic syntax check
{
include "network/lan/hardware.ycp";
}

0 comments on commit 7933a19

Please sign in to comment.