summaryrefslogtreecommitdiff
path: root/tools/skrewt.c
diff options
context:
space:
mode:
authorJohn Denker <jsd@av8n.com>2012-07-24 11:28:34 -0700
committerJohn Denker <jsd@av8n.com>2012-07-29 15:32:36 -0700
commite2390efc92d66a50c6ce13d027aac8c6ecc02e89 (patch)
treead6d5a3ab37cc8c49443815771383ad3bbd985f8 /tools/skrewt.c
parent0f0fc6dbb7e7354ac662951f124b0a64c54b741b (diff)
remove print statements
Diffstat (limited to 'tools/skrewt.c')
-rw-r--r--tools/skrewt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/skrewt.c b/tools/skrewt.c
index d2e1bbc..ad99e67 100644
--- a/tools/skrewt.c
+++ b/tools/skrewt.c
@@ -149,7 +149,7 @@ int mypid;
/* Content-Type: multipart/mixed; boundary="1170861315-1262462055-1341954763=:92165" */
//
void parse_content(const string type_spec_line, string &maintype, string &boundary) {
- cerr << "parser called with: " << type_spec_line << endl;
+ //xxx cerr << "parser called with: " << type_spec_line << endl;
string get_type(type_spec_line);
size_t where = get_type.find_first_of(" \t;\n");
@@ -310,7 +310,7 @@ int main(int _argc, const char** _argv){
}
//xxxx cout << headrec.length() << " ... ";
}
- cerr << "headers are done. Delimited: " << saw_blank_line << endl;
+ //xxx cerr << "headers are done. Delimited: " << saw_blank_line << endl;
// Headers are done.
// Do some early-stage thinking.
@@ -368,7 +368,7 @@ int main(int _argc, const char** _argv){
if (headword == "content-type") {
parse_content(rest, sub_contype, junk);
currently_text = sub_contype == "text";
- cerr << "setting contype '" << sub_contype << "' " << currently_text << " ... " << textlines << endl;
+ //xxxx cerr << "setting contype '" << sub_contype << "' " << currently_text << " ... " << textlines << endl;
}
} else {
if (main_multipart && line == "--" + boundary) {