/[projects]/smsdaemon/HttpClient.cpp
ViewVC logotype

Diff of /smsdaemon/HttpClient.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 193 by torben, Wed Dec 17 23:43:26 2008 UTC revision 195 by torben, Thu Dec 18 06:47:26 2008 UTC
# Line 16  namespace HttpClient Line 16  namespace HttpClient
16                          if (isalnum(ch))                          if (isalnum(ch))
17                                  ss << ch;                                  ss << ch;
18                          else                          else
19                                  ss << "%" << std::setw(2) << std::hex << (int) ch;                                  ss << "%" << std::setw(2) << std::hex << std::setfill('0') <<(int) ch;
20                  }                  }
21                  return ss.str();                  return ss.str();
22          }          }

Legend:
Removed from v.193  
changed lines
  Added in v.195

  ViewVC Help
Powered by ViewVC 1.1.20