projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd2c903
)
[PATCH] misuse of strstr
author
Al Viro
<viro@ftp.linux.org.uk>
Wed, 11 Oct 2006 16:25:45 +0000
(17:25 +0100)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Wed, 11 Oct 2006 18:17:06 +0000
(11:17 -0700)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/gfs2/locking/dlm/mount.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/gfs2/locking/dlm/mount.c
b/fs/gfs2/locking/dlm/mount.c
index 1f94dd35a9435562fa7e166320f58b4c005d1091..cdd1694e889bac2c866f3fdc328acc16b47d169f 100644
(file)
--- a/
fs/gfs2/locking/dlm/mount.c
+++ b/
fs/gfs2/locking/dlm/mount.c
@@
-45,7
+45,7
@@
static struct gdlm_ls *init_gdlm(lm_callback_t cb, struct gfs2_sbd *sdp,
strncpy(buf, table_name, 256);
buf[255] = '\0';
- p = str
str(buf, ":"
);
+ p = str
chr(buf, ':'
);
if (!p) {
log_info("invalid table_name \"%s\"", table_name);
kfree(ls);