diff options
author | David S. Miller <davem@davemloft.net> | 2008-04-03 17:33:42 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-04-03 17:33:42 -0400 |
commit | 3bb5da3837cc1aa17736b05139c9a22c3794851a (patch) | |
tree | c92d5684a866542b1cb20641607ac1643ce03a47 /lib/kobject_uevent.c | |
parent | 7feb49c82a74bc7c091b8ab2a3f96baa33d08ece (diff) | |
parent | 9597362d354f8655ece324b01d0c640a0e99c077 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
Diffstat (limited to 'lib/kobject_uevent.c')
-rw-r--r-- | lib/kobject_uevent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kobject_uevent.c b/lib/kobject_uevent.c index b06185ed1895..9fb6b86cf6b1 100644 --- a/lib/kobject_uevent.c +++ b/lib/kobject_uevent.c | |||
@@ -57,7 +57,7 @@ int kobject_action_type(const char *buf, size_t count, | |||
57 | enum kobject_action action; | 57 | enum kobject_action action; |
58 | int ret = -EINVAL; | 58 | int ret = -EINVAL; |
59 | 59 | ||
60 | if (count && buf[count-1] == '\n') | 60 | if (count && (buf[count-1] == '\n' || buf[count-1] == '\0')) |
61 | count--; | 61 | count--; |
62 | 62 | ||
63 | if (!count) | 63 | if (!count) |