1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-19 22:50:17 +03:00

fixups to get back to proper patch order

Damm, it's hard to merge a multi-line tree into one flat line at times...
This commit is contained in:
Greg KH 2005-04-26 22:52:57 -07:00 committed by Greg KH
parent 7757db1f85
commit b1e95455d2
3 changed files with 2 additions and 9 deletions

View File

@ -35,9 +35,6 @@ my $perm = "udev.permissions";
my $main_conf = "udev-test.conf";
my $conf_tmp = "udev-test.rules";
# uncomment following line to run udev with valgrind.
# Should make this a runtime option to the script someday...
#my $udev_bin = "valgrind --tool=memcheck --leak-check=yes ../udev";
my @tests = (
{
@ -1262,6 +1259,7 @@ sub run_test {
udev("add", $config->{subsys}, $config->{devpath}, \$config->{conf});
if ((-e "$PWD/$udev_root$config->{exp_name}") ||
(-l "$PWD/$udev_root$config->{exp_name}")) {

5
udev.c
View File

@ -108,7 +108,6 @@ int main(int argc, char *argv[], char *envp[])
udev_init_config();
/* set signal handlers */
memset(&act, 0x00, sizeof(act));
act.sa_handler = (void (*) (int))sig_handler;
sigemptyset (&act.sa_mask);
act.sa_flags = 0;
@ -193,10 +192,6 @@ int main(int argc, char *argv[], char *envp[])
/* get node from db, remove db-entry, delete created node */
retval = udev_remove_device(&udev);
/* Set the DEVNAME if known */
if (udev.devname[0] != '\0') {
setenv("DEVNAME", udev.devname, 1);
}
/* run dev.d/ scripts if we're not instructed to ignore the event */
if (udev_dev_d && udev.devname[0] != '\0') {
setenv("DEVNAME", udev.devname, 1);

View File

@ -401,7 +401,7 @@ print:
break;
case PATH:
strfieldcpy(result, udev.devpath);
strfieldcpy(result, path);
break;
case ALL: