summaryrefslogtreecommitdiff
path: root/ext/socket/option.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-10 03:57:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-10 03:57:23 +0000
commit160c230f94919299b1270e90b961c04fc06cc255 (patch)
tree272e169e0f731b0a70466e751d866f69f21afee0 /ext/socket/option.c
parent395abae93d6c9d86364714b4cbf4c3cad9d020ef (diff)
* ext/socket/option.c (inspect_local_peercred): constfied.
* ext/socket/ancdata.c (anc_inspect_socket_creds): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/socket/option.c')
-rw-r--r--ext/socket/option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/socket/option.c b/ext/socket/option.c
index eeb292dc76..01a371639c 100644
--- a/ext/socket/option.c
+++ b/ext/socket/option.c
@@ -272,7 +272,7 @@ inspect_local_peercred(int level, int optname, VALUE data, VALUE ret)
rb_str_catf(ret, " euid=%u", cred.cr_uid);
if (cred.cr_ngroups) {
int i;
- char *sep = " groups=";
+ const char *sep = " groups=";
for (i = 0; i < cred.cr_ngroups; i++) {
rb_str_catf(ret, "%s%u", sep, cred.cr_groups[i]);
sep = ",";