diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-10 12:11:47 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-10 12:11:47 +0000 |
commit | 26df84737842a540f9c435f30f714f51121b5b69 (patch) | |
tree | 9b7605c7d977bc0ef577adc7526e1704b8804aaa /src | |
parent | 4dd8228ede0167110a201ab5f3ca6ef8a9faf750 (diff) |
istringstream not ostringstream
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3859 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/mode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mode.cpp b/src/mode.cpp index 8690180e9..0d0828360 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -499,7 +499,7 @@ void ModeParser::Process(char **parameters, int pcnt, userrec *user) } std::string mode_sequence = parameters[1]; std::string parameter = ""; - std::ostringstream parameter_list; + std::istringstream parameter_list; std::string output_sequence = ""; bool adding = true, state_change = false; int handler_id = 0; |