diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2004-01-10 01:05:38 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:14 -0700 |
commit | 2794d2491714bc546bc209d6996f6ad97aa8a994 (patch) | |
tree | 1588fe9e2af7d2b2a4849db8637a808568cdabcf /namedev.c | |
parent | d6e86b3752dc2603c5811b153a1db0143cac5721 (diff) |
[PATCH] udev - exec status fix for klibc
Here is a patch to remove the ifdef's and fix klibc instead.
Diffstat (limited to 'namedev.c')
-rw-r--r-- | namedev.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -401,12 +401,10 @@ static int exec_callout(struct config_device *dev, char *value, int len) retval = -1; } -#ifndef __KLIBC__ if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) { dbg("callout program status 0x%x", status); retval = -1; } -#endif } return retval; } |