* [Bug 508] New: typo in ipmi_devintf.c causes kernel compile to fail
@ 2003-03-26 18:56 Martin J. Bligh
2003-03-26 19:14 ` [patch] bug 508: ipmi compile fix Robert Love
0 siblings, 1 reply; 5+ messages in thread
From: Martin J. Bligh @ 2003-03-26 18:56 UTC (permalink / raw)
To: linux-kernel
http://bugme.osdl.org/show_bug.cgi?id=508
Summary: typo in ipmi_devintf.c causes kernel compile to fail
Kernel Version: 2.5.66
Status: NEW
Severity: normal
Owner: bugme-janitors@lists.osdl.org
Submitter: frank@artair.com
Distribution:
Hardware Environment: intel x86
Software Environment:
Problem Description: drivers/char/ipmi/ipmi_devintf.c:452 'snprinf' should be
'snprintf'
Steps to reproduce: enable ipmi support and try to build kernel. Adding the
missing 't' fixes the problem
^ permalink raw reply [flat|nested] 5+ messages in thread
* [patch] bug 508: ipmi compile fix
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
2003-03-26 20:19 ` Randy.Dunlap
0 siblings, 1 reply; 5+ messages in thread
From: Robert Love @ 2003-03-26 19:14 UTC (permalink / raw)
To: torvalds; +Cc: linux-kernel
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,
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch] bug 508: ipmi compile fix
2003-03-26 19:14 ` [patch] bug 508: ipmi compile fix Robert Love
@ 2003-03-26 20:19 ` Randy.Dunlap
2003-03-26 20:34 ` Dave Jones
0 siblings, 1 reply; 5+ messages in thread
From: Randy.Dunlap @ 2003-03-26 20:19 UTC (permalink / raw)
To: Robert Love; +Cc: linux-kernel
On 26 Mar 2003 14:14:50 -0500 Robert Love <rml@tech9.net> wrote:
| 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.
Exactly what I said before I saw your patch. :)
--
~Randy
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch] bug 508: ipmi compile fix
2003-03-26 20:19 ` Randy.Dunlap
@ 2003-03-26 20:34 ` Dave Jones
2003-03-26 20:37 ` Randy.Dunlap
0 siblings, 1 reply; 5+ messages in thread
From: Dave Jones @ 2003-03-26 20:34 UTC (permalink / raw)
To: Randy.Dunlap; +Cc: Robert Love, linux-kernel
On Wed, Mar 26, 2003 at 12:19:42PM -0800, Randy.Dunlap wrote:
> | Sheesh, diffing the solution is certainly quicker than filling out the
> | bugzilla entry...
> | Patch is against 2.5.66. Linus, please apply.
> Exactly what I said before I saw your patch. :)
Then again, trivial one liners do get forgotten..
Dave
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch] bug 508: ipmi compile fix
2003-03-26 20:34 ` Dave Jones
@ 2003-03-26 20:37 ` Randy.Dunlap
0 siblings, 0 replies; 5+ messages in thread
From: Randy.Dunlap @ 2003-03-26 20:37 UTC (permalink / raw)
To: Dave Jones; +Cc: linux-kernel
On Wed, 26 Mar 2003 20:34:35 +0000 Dave Jones <davej@codemonkey.org.uk> wrote:
| On Wed, Mar 26, 2003 at 12:19:42PM -0800, Randy.Dunlap wrote:
|
| > | Sheesh, diffing the solution is certainly quicker than filling out the
| > | bugzilla entry...
| > | Patch is against 2.5.66. Linus, please apply.
| > Exactly what I said before I saw your patch. :)
|
| Then again, trivial one liners do get forgotten..
Yes, good point.
--
~Randy
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2003-03-26 20:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [patch] bug 508: ipmi compile fix Robert Love
2003-03-26 20:19 ` Randy.Dunlap
2003-03-26 20:34 ` Dave Jones
2003-03-26 20:37 ` Randy.Dunlap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox