masaori335 commented on pull request #8069: URL: https://github.com/apache/trafficserver/pull/8069#issuecomment-881242502
The first commit changes only `TSMimeHdrFieldFind` to see the shape of the code. Many files are changed by below sed. ``` find . -name "*.c" | xargs -n 1 sed -i '' "s/TSMimeHdrFieldFind(\(.*\));/TSMimeHdrFieldFind(\1, NULL);/g" find . -name "*.h" -o -name "*.cc" | xargs -n 1 sed -i '' "s/TSMimeHdrFieldFind(\(.*\));/TSMimeHdrFieldFind(\1, nullptr);/g" ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
