commit | 97824d6d4bc344963fc999d29b521217b367bacf | [log] [tgz] |
---|---|---|
author | Ben Warren <biggerbadderben@gmail.com> | Thu Jul 29 12:56:11 2010 -0700 |
committer | Ben Warren <biggerbadderben@gmail.com> | Mon Aug 09 11:52:30 2010 -0700 |
tree | 3924a01a2169dffd939ca571be2ac66855b154b3 | |
parent | bd17e7a0550c165e90b0de0c5028893605bbe688 [diff] |
Fix compile warnings for const correctness Commit 6e37b1a3a25004d3df5867de49fff6b3fc9c4f04 modifies several net calls to take a (const char *) parameter instead of (char *), but in some cases the modified functions call other functions taking (char *). The end result is warnings about discarding the const qualifier. This patch fixes these other function signatures. Signed-off-by: Ben Warren <biggerbadderben@gmail.com>