diff --git a/[refs] b/[refs] index 6b57ae7e10e3..6e4614a80452 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: ac2e5327a5e4f6477afc6a3b3b0dc6e0476d71d4 +refs/heads/master: df1778be1a33edffa51d094eeda87c858ded6560 diff --git a/trunk/kernel/sysctl_binary.c b/trunk/kernel/sysctl_binary.c index b25115e8c7f3..ebf72358e86a 100644 --- a/trunk/kernel/sysctl_binary.c +++ b/trunk/kernel/sysctl_binary.c @@ -1171,9 +1171,10 @@ static ssize_t bin_dn_node_address(struct file *file, /* Convert the decnet address to binary */ result = -EIO; - nodep = strchr(buf, '.') + 1; + nodep = strchr(buf, '.'); if (!nodep) goto out; + ++nodep; area = simple_strtoul(buf, NULL, 10); node = simple_strtoul(nodep, NULL, 10);