Changeset 2179 in MondoRescue
- Timestamp:
- Apr 25, 2009, 2:46:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.9/mondo/src/mondorestore/mondo-prep.c
r2154 r2179 288 288 log_msg(1, "OK, rewound i-want-my-lvm. Doing funky stuff..."); 289 289 rewind(fin); 290 for (fgets(incoming, 512, fin); !feof(fin); fgets(incoming, 512, fin)) {290 for (fgets(incoming, MAX_STR_LEN - 1, fin); !feof(fin); fgets(incoming, MAX_STR_LEN - 1, fin)) { 291 291 fgetpos(fin, &orig_pos); 292 292 if (incoming[0] != '#') { … … 301 301 if ((p = strstr(incoming, "vgcreate"))) { 302 302 // include next line(s) if they end in /dev (cos we've got a broken i-want-my-lvm) 303 for (fgets(tmp, 512, fin); !feof(fin); fgets(tmp, 512, fin)) {303 for (fgets(tmp, MAX_STR_LEN - 1, fin); !feof(fin); fgets(tmp, MAX_STR_LEN - 1, fin)) { 304 304 if (tmp[0] == '#') { 305 305 fsetpos(fin, &orig_pos);
Note:
See TracChangeset
for help on using the changeset viewer.