diff options
| author | Fuwn <[email protected]> | 2022-04-14 03:03:48 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-04-14 03:03:48 +0000 |
| commit | d476435d429377677aa0ddc96ab3931721a5415c (patch) | |
| tree | 31820ebffde12f29787b8bec8c0d273ec4c2ff63 | |
| parent | feat: add hacking steps (diff) | |
| download | maple-d476435d429377677aa0ddc96ab3931721a5415c.tar.xz maple-d476435d429377677aa0ddc96ab3931721a5415c.zip | |
format: move strings to same line
| -rw-r--r-- | maple/maple.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/maple/maple.cc b/maple/maple.cc index 51532f2..8a8d85a 100644 --- a/maple/maple.cc +++ b/maple/maple.cc @@ -193,11 +193,9 @@ auto main() -> int { return std::tolower(a) == std::tolower(b); } )) { - response << "51 The server (Maple) could not find the specified file" - ".\r\n"; + response << "51 The server (Maple) could not find the specified file.\r\n"; } else { - response << "59 The server (Maple) received a bad request: Invalid " - "protocol\r\n"; + response << "59 The server (Maple) received a bad request: Invalid protocol\r\n"; } } } |