Alex Riesen <raa.lkml@xxxxxxxxx> writes: > + for (i = 0; i < url_len; ++i) > + if ('\n' == url[i]) > + fputs("\\n", fp); > + else > + fputc(url[i], fp); > + fputc('\n', fp); This ad-hoc quoting feels _very_ wrong. Who is on the reading side and how does it unquote? If it uses quote.c infrastructure, we should be quoting using the function from the same library shouldn't we? If it is just informational use only, then it might make more sense to drop this ugly "quoted \n" silently. I dunno. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html