aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2005-12-03 00:41:57 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2005-12-03 00:41:57 +0100
commitf1df064766075ac2f36fb4027a4a683964f3be9a (patch)
tree6b1aaa6978dd0f6f2af2c8d8829506be2de09fbf
parent027d2ebf750a011bf544f7d279cfb706594e5d05 (diff)
Oops...
A very small typo caused very weird problems in the line splitting code.
-rw-r--r--protocols/nogaim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c
index 101cbb14..d0676201 100644
--- a/protocols/nogaim.c
+++ b/protocols/nogaim.c
@@ -665,7 +665,7 @@ void serv_got_im( struct gaim_connection *gc, char *handle, char *msg, guint32 f
/* If there's a newline/space in this string, split up there,
looks a bit prettier. */
- if( ( nl = strrchr( msg, '\n' ) ) || ( nl = strchr( msg, ' ' ) ) )
+ if( ( nl = strrchr( msg, '\n' ) ) || ( nl = strrchr( msg, ' ' ) ) )
{
msg[425] = tmp;
tmp = *nl;