--- trunk/mkinitrd-magellan/busybox/libbb/write.c 2010/04/29 20:38:48 983 +++ trunk/mkinitrd-magellan/busybox/libbb/write.c 2010/05/30 11:32:42 984 @@ -10,11 +10,10 @@ #include "libbb.h" /* Open file and write string str to it, close file. - * Die on any open or write-error. */ + * Die on any open or write error. */ void FAST_FUNC xopen_xwrite_close(const char* file, const char* str) { int fd = xopen(file, O_WRONLY); - - xwrite(fd, str, strlen(str)); + xwrite_str(fd, str); close(fd); }