diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2004-04-01 00:59:58 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:35:13 -0700 |
commit | 9b28a52a0ac9b7993c932bbfe9d86dfc814be218 (patch) | |
tree | 804f4ed19ff4849415b074771c42e5fec7142b14 /udev_config.c | |
parent | bbbe503ec1a5623a5a8abd003f46fdd8c3581054 (diff) |
[PATCH] DEVPATH for netdev
Here we change the DEVPATH for netdev's in the environment of the dev.d/
scripts to the name the device is renamed to. The original name doesn't
exist in the kernel after rename.
Diffstat (limited to 'udev_config.c')
-rw-r--r-- | udev_config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/udev_config.c b/udev_config.c index fe26850a87..ba04003e90 100644 --- a/udev_config.c +++ b/udev_config.c @@ -86,13 +86,13 @@ static void init_variables(void) #define set_var(_name, _var) \ if (strcasecmp(variable, _name) == 0) { \ - dbg_parse("%s = '%s'", _name, value); \ - strfieldcpymax(_var, value, sizeof(_var));\ + dbg_parse("%s='%s'", _name, value); \ + strfieldcpy(_var, value);\ } #define set_bool(_name, _var) \ if (strcasecmp(variable, _name) == 0) { \ - dbg_parse("%s = '%s'", _name, value); \ + dbg_parse("%s='%s'", _name, value); \ _var = string_is_true(value); \ } |