diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2004-02-02 08:00:07 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:20 -0700 |
commit | 8e2229c439f4d0bcf5660457d5a2d6f9d4723e88 (patch) | |
tree | 4aa57059da530632dd0d71552cb7c1afbfd04215 /udevsend.c | |
parent | 53921bfa44129a19661a4aaa4c1647282921fc18 (diff) |
[PATCH] udevd - config cleanup
> Here is a small cleanup and better Makefile integration.
> udevd and udevsender are now installed. Just switch HOTPLUG_EXEC from ROOT
> to SENDER before install and udevsend will be called.
>
> We may add the location of the socket and lock file to the config,
> if this is needed.
Same patch with a fix for the stack size setting.
Diffstat (limited to 'udevsend.c')
-rw-r--r-- | udevsend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udevsend.c b/udevsend.c index 6ffd68c1b7..0ddc6839de 100644 --- a/udevsend.c +++ b/udevsend.c @@ -159,7 +159,7 @@ int main(int argc, char* argv[]) memset(&saddr, 0x00, sizeof(saddr)); saddr.sun_family = AF_LOCAL; - strcpy(saddr.sun_path, UDEVD_SOCKET); + strcpy(saddr.sun_path, UDEVD_SOCK); /* try to connect, if it fails start daemon */ retval = connect(sock, &saddr, sizeof(saddr)); |