diff options
Diffstat (limited to 'sys-block/partimage/files')
-rw-r--r-- | sys-block/partimage/files/partimage-0.6.7+glibc-2.10.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys-block/partimage/files/partimage-0.6.7+glibc-2.10.patch b/sys-block/partimage/files/partimage-0.6.7+glibc-2.10.patch new file mode 100644 index 000000000000..c8b2fed20ece --- /dev/null +++ b/sys-block/partimage/files/partimage-0.6.7+glibc-2.10.patch @@ -0,0 +1,12 @@ +diff -Naur partimage-0.6.7/src/client/misc.cpp partimage-0.6.7-new/src/client/misc.cpp +--- partimage-0.6.7/src/client/misc.cpp 2008-02-03 19:58:00.000000000 -0200 ++++ partimage-0.6.7-new/src/client/misc.cpp 2009-02-26 12:57:45.000000000 -0300 +@@ -2372,7 +2372,7 @@ + + static char *sfdisk_line_to_partition_device(const char *line) + { +- if (char *p = strchr(line, ':')) { ++ if (const char *p = strchr(line, ':')) { + while (p[-1] == ' ' && p > line) p--; + return strndup(line, p - line); + } else { |