From 80d230c3945a0c79e5215b14c864b1acf503e163 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 22 Feb 2009 11:09:55 +0000 Subject: * ext/socket/option.c (inspect_linger): message refined. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/socket/option.c b/ext/socket/option.c index a188061418..5563a7d8bb 100644 --- a/ext/socket/option.c +++ b/ext/socket/option.c @@ -272,7 +272,7 @@ inspect_linger(int level, int optname, VALUE data, VALUE ret) if (RSTRING_LEN(data) == sizeof(struct linger)) { struct linger s; memcpy((char*)&s, RSTRING_PTR(data), sizeof(s)); - rb_str_catf(ret, " onoff:%d linger:%d", s.l_onoff, s.l_linger); + rb_str_catf(ret, " %s %dsec", s.l_onoff ? "on" : "off", s.l_linger); return 1; } else { -- cgit v1.2.3