diff options
author | Jeff Garzik <jeff@garzik.org> | 2012-04-15 16:47:24 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-04-15 16:47:24 -0400 |
commit | ab9dc75a183c7a46e38e957ee3192d5febcccb3c (patch) | |
tree | 4af4074d5ef5859ce780af39f483cb02f5da5da2 /src/irc.cpp | |
parent | 5a701eb7ea16b87b56263996ee8e98ec89e2a3d8 (diff) |
The string class returns string::npos, when find() fails.
Noticed when sign-comparison warnings were enabled.
Diffstat (limited to 'src/irc.cpp')
-rw-r--r-- | src/irc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/irc.cpp b/src/irc.cpp index 09bacc1658..d535f59c4c 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -108,13 +108,13 @@ int RecvUntil(SOCKET hSocket, const char* psz1, const char* psz2=NULL, const cha if (!RecvLineIRC(hSocket, strLine)) return 0; printf("IRC %s\n", strLine.c_str()); - if (psz1 && strLine.find(psz1) != -1) + if (psz1 && strLine.find(psz1) != string::npos) return 1; - if (psz2 && strLine.find(psz2) != -1) + if (psz2 && strLine.find(psz2) != string::npos) return 2; - if (psz3 && strLine.find(psz3) != -1) + if (psz3 && strLine.find(psz3) != string::npos) return 3; - if (psz4 && strLine.find(psz4) != -1) + if (psz4 && strLine.find(psz4) != string::npos) return 4; } } |