Skip to content

Commit f17156c

Browse files
committed
Fixed copy/paste mistake
1 parent 0a00d29 commit f17156c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/ZendAccelerator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ static inline int is_stream_path(const char *filename)
137137
static inline int is_cachable_stream_path(const char *filename)
138138
{
139139
return memcmp(filename, "file://", sizeof("file://") - 1) == 0 ||
140-
memcmp(filename, "phar://", sizeof("file://") - 1) == 0;
140+
memcmp(filename, "phar://", sizeof("phar://") - 1) == 0;
141141
}
142142

143143
/* O+ overrides PHP chdir() function and remembers the current working directory

0 commit comments

Comments
 (0)