Browse code

Ver0.9.2

Masanobu Yasui authored on 2008/10/24 06:26:10
Showing 3 changed files
... ...
@@ -0,0 +1 @@
0
+YASUI Masanobu <yasui-m at klab.org>
... ...
@@ -1,15 +1,13 @@
1 1
 0.9.2: 
2
- - autoconf
3
- - block device transfer
4
- - character device transfer
5
- - fifo transfer
2
+ - block device transfer support
3
+ - character device transfer support
4
+ - fifo transfer support
6 5
 
7
-0.9.1: Wed Oct 22 21:14:22 JST 2008
6
+0.9.1:
8 7
  - Document write
9
- - change log format
10 8
  - fixed encrypt function
11 9
  - fixed console password function
12 10
  - create msync command
13 11
 
14
-0.9.0beta: Thu Oct 9 14:08:54 2008 +0900
15
- - initial beta release
12
+0.9.0beta:
13
+ - initial release
... ...
@@ -701,7 +701,6 @@ int mcreatefile(char *base, char *name, mode_t mode)
701 701
   int fd = -1;
702 702
   mode_t u = umask(0);
703 703
   char path[PATH_MAX];
704
-
705 704
   if(!mcreatedir(base,name,0755)){
706 705
     sprintf(path,"%s/%s",base,name);
707 706
     fd = open(path, O_RDWR | O_CREAT | O_TRUNC, mode & 0xFFF);