From: Robert Love <rml@tech9.net>
To: torvalds@transmeta.com
Cc: linux-kernel <linux-kernel@vger.kernel.org>
Subject: [patch] bug 508: ipmi compile fix
Date: 26 Mar 2003 14:14:50 -0500 [thread overview]
Message-ID: <1048706090.748.7.camel@localhost> (raw)
In-Reply-To: <1441850000.1048704979@flay>
On Wed, 2003-03-26 at 13:56, Martin J. Bligh wrote:
> Problem Description: drivers/char/ipmi/ipmi_devintf.c:452
> 'snprinf' should be 'snprintf'
Sheesh, diffing the solution is certainly quicker than filling out the
bugzilla entry...
Patch is against 2.5.66. Linus, please apply.
Robert Love
drivers/char/ipmi/ipmi_devintf.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -urN linux-2.5.66/drivers/char/ipmi/ipmi_devintf.c linux/drivers/char/ipmi/ipmi_devintf.c
--- linux-2.5.66/drivers/char/ipmi/ipmi_devintf.c 2003-03-24 17:01:22.000000000 -0500
+++ linux/drivers/char/ipmi/ipmi_devintf.c 2003-03-26 14:12:33.046757752 -0500
@@ -449,7 +449,7 @@
if (if_num > MAX_DEVICES)
return;
- snprinf(name, sizeof(name), "ipmidev/%d", if_num);
+ snprintf(name, sizeof(name), "ipmidev/%d", if_num);
handles[if_num] = devfs_register(NULL, name, DEVFS_FL_NONE,
ipmi_major, if_num,
next prev parent reply other threads:[~2003-03-26 19:03 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-03-26 18:56 [Bug 508] New: typo in ipmi_devintf.c causes kernel compile to fail Martin J. Bligh
2003-03-26 19:14 ` Robert Love [this message]
2003-03-26 20:19 ` [patch] bug 508: ipmi compile fix Randy.Dunlap
2003-03-26 20:34 ` Dave Jones
2003-03-26 20:37 ` Randy.Dunlap
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1048706090.748.7.camel@localhost \
--to=rml@tech9.net \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.