summaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-06 16:24:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-06 16:24:45 +0000
commit41948816524acce9efe1955c01bcd54625909270 (patch)
tree54b2d75b0531035befcb1a3892375e7d47c6168f /file.c
parent6e2e1af59517dfc0a56bd198f04fabb3121922f7 (diff)
downloadruby-41948816524acce9efe1955c01bcd54625909270.tar.gz
ruby-41948816524acce9efe1955c01bcd54625909270.tar.xz
ruby-41948816524acce9efe1955c01bcd54625909270.zip
* file.c (rb_file_s_extname): fix for file name with spaces.
[ruby-talk:307404] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17916 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index a7f9c064f..f7a1af9f5 100644
--- a/file.c
+++ b/file.c
@@ -3123,7 +3123,7 @@ rb_file_s_extname(VALUE klass, VALUE fname)
p = last;
break;
}
- e = dot;
+ if (*last == '.') e = dot;
continue;
#else
e = p; /* get the last dot of the last component */