d92c85e91a
Add 0044-RHBZ-976688-fix-wipe-wwids.patch * Seek back to the start of the file after truncating it Add 0045-RHBZ-977297-man-page-fix.patch * update man page to match actual defaults Add 0046-RHBZ-883981-move-udev-rules.patch * move udev rules file from /lib to /usr/lib Resolves: bz #883981, #976688, #977297
29 lines
856 B
Diff
29 lines
856 B
Diff
---
|
|
libmultipath/wwids.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
Index: multipath-tools-130222/libmultipath/wwids.c
|
|
===================================================================
|
|
--- multipath-tools-130222.orig/libmultipath/wwids.c
|
|
+++ multipath-tools-130222/libmultipath/wwids.c
|
|
@@ -4,6 +4,7 @@
|
|
#include <string.h>
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
+#include <sys/types.h>
|
|
|
|
#include "checkers.h"
|
|
#include "vector.h"
|
|
@@ -100,6 +101,11 @@ replace_wwids(vector mp)
|
|
condlog(0, "cannot truncate wwids file : %s", strerror(errno));
|
|
goto out_file;
|
|
}
|
|
+ if (lseek(fd, 0, SEEK_SET) < 0) {
|
|
+ condlog(0, "cannot seek to the start of the file : %s",
|
|
+ strerror(errno));
|
|
+ goto out_file;
|
|
+ }
|
|
len = strlen(WWIDS_FILE_HEADER);
|
|
if (write_all(fd, WWIDS_FILE_HEADER, len) != len) {
|
|
condlog(0, "Can't write wwid file header : %s",
|