projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c4b9a9
)
[PATCH] fix oddball boolean logic in s390 netiucv
author
Dave Jones
<
[email protected]
>
Mon, 10 Jul 2006 11:45:18 +0000
(
04:45
-0700)
committer
Linus Torvalds
<
[email protected]
>
Mon, 10 Jul 2006 20:24:25 +0000
(13:24 -0700)
Signed-off-by: Dave Jones <
[email protected]
>
Cc: Heiko Carstens <
[email protected]
>
Cc: Andreas Herrmann <
[email protected]
>
Cc: Michael Holzheu <
[email protected]
>
Acked-by: Jeff Garzik <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/s390/net/netiucv.c
patch
|
blob
|
history
diff --git
a/drivers/s390/net/netiucv.c
b/drivers/s390/net/netiucv.c
index b452cc1afd550a5c7c24ed4bde87db498539952c..5d6e6cbfa360375cabfa6bcbc87650eddab50ec5 100644
(file)
--- a/
drivers/s390/net/netiucv.c
+++ b/
drivers/s390/net/netiucv.c
@@
-2029,7
+2029,7
@@
remove_write (struct device_driver *drv, const char *buf, size_t count)
count = IFNAMSIZ-1;
for (i=0, p=(char *)buf; i<count && *p; i++, p++) {
- if ((*p == '\n') | (*p == ' ')) {
+ if ((*p == '\n') |
|
(*p == ' ')) {
/* trailing lf, grr */
break;
} else {