nginx-0.1.7-RELEASE import

    *) Bugfix: on FreeBSD the segmentation fault may occur if the size of
       the transferred file was changed; the bug had appeared in 0.1.5.
diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml
index 48f48c0..a8257bf 100644
--- a/docs/xml/nginx/changes.xml
+++ b/docs/xml/nginx/changes.xml
@@ -6,6 +6,24 @@
             title="nginx">
 
 
+<changes ver="0.1.7" date="12.11.2004">
+
+<change type="bugfix">
+<para lang="ru">
+ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ sendfile, ÅÓÌÉ ÐÅÒÅÄÁ×ÁÅÍÙÊ ÆÁÊÌ ÍÅÎÑÌÓÑ, ÔÏ ÍÏÇ
+ÐÒÏÉÚÏÊÔÉ segmentation fault ÎÁ FreeBSD;
+ÏÛÉÂËÁ ÐÏÑ×ÉÌÁÓØ × 0.1.2.
+</para>
+<para lang="en">
+on FreeBSD the segmentation fault may occure if the size of the transferred
+file was changed;
+bug appeared in 0.1.2.
+</para>
+</change>
+
+</changes>
+
+
 <changes ver="0.1.6" date="11.11.2004">
 
 <change type="bugfix">
diff --git a/src/core/nginx.h b/src/core/nginx.h
index a8c5ca1..529c43d 100644
--- a/src/core/nginx.h
+++ b/src/core/nginx.h
@@ -8,7 +8,7 @@
 #define _NGINX_H_INCLUDED_
 
 
-#define NGINX_VER          "nginx/0.1.6"
+#define NGINX_VER          "nginx/0.1.7"
 
 #define NGINX_VAR          "NGINX"
 #define NGX_NEWPID_EXT     ".newbin"
diff --git a/src/http/modules/ngx_http_static_handler.c b/src/http/modules/ngx_http_static_handler.c
index 12cf5b3..4cc0de1 100644
--- a/src/http/modules/ngx_http_static_handler.c
+++ b/src/http/modules/ngx_http_static_handler.c
@@ -530,6 +530,7 @@
     b->file_last = ngx_file_size(&fi);
 
     b->file->fd = fd;
+    b->file->name = name;
     b->file->log = log;
 
     out.buf = b;
diff --git a/src/os/unix/ngx_channel.c b/src/os/unix/ngx_channel.c
index 5c5a5e1..0bfbd0d 100644
--- a/src/os/unix/ngx_channel.c
+++ b/src/os/unix/ngx_channel.c
@@ -233,10 +233,10 @@
 void ngx_close_channel(ngx_fd_t *fd, ngx_log_t *log)
 {
     if (close(fd[0]) == -1) {
-        ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, "close() failed");
+        ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, "close() channel failed");
     }
 
     if (close(fd[1]) == -1) {
-        ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, "close() failed");
+        ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, "close() channel failed");
     }
 }
diff --git a/src/os/unix/ngx_socket.h b/src/os/unix/ngx_socket.h
index c6eb941..4dcf924 100644
--- a/src/os/unix/ngx_socket.h
+++ b/src/os/unix/ngx_socket.h
@@ -54,7 +54,7 @@
 #define ngx_shutdown_socket_n  "shutdown()"
 
 #define ngx_close_socket    close
-#define ngx_close_socket_n  "close()"
+#define ngx_close_socket_n  "close() socket"
 
 
 #endif /* _NGX_SOCKET_H_INCLUDED_ */