]> git.pld-linux.org Git - packages/e2fsprogs.git/commitdiff
- outdated.
authorkloczek <kloczek@pld-linux.org>
Mon, 11 Nov 2002 12:48:03 +0000 (12:48 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    e2fsprogs-manpage.patch -> 1.2
    e2fsprogs-mountlabel3.patch -> 1.2

e2fsprogs-manpage.patch [deleted file]
e2fsprogs-mountlabel3.patch [deleted file]

diff --git a/e2fsprogs-manpage.patch b/e2fsprogs-manpage.patch
deleted file mode 100644 (file)
index 9debb60..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- e2fsprogs-1.27/resize/resize2fs.8.in
-+++ e2fsprogs-1.27/resize/resize2fs.8.in
-@@ -51,7 +51,7 @@
- disk cylinder as before!  Otherwise, the resize operation will 
- certainly not work, and you may lose your entire filesystem.
- .PP
--If you wish to shrink the an ext2 partition, first use 
-+If you wish to shrink an ext2 partition, first use 
- .B resize2fs
- to shrink the size of filesystem.  Then you may use 
- .BR fdisk (8)
diff --git a/e2fsprogs-mountlabel3.patch b/e2fsprogs-mountlabel3.patch
deleted file mode 100644 (file)
index ae391ee..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
---- e2fsprogs-1.19/misc/get_device_by_label.c.or       Sun Apr 15 19:20:01 2001
-+++ e2fsprogs-1.19/misc/get_device_by_label.c  Sun Apr 15 19:50:32 2001
-@@ -96,6 +96,10 @@
-       char device[110];
-       int firstPass;
-       int handleOnFirst;
-+        enum {
-+          CBBUF = 16 * 1024
-+        };
-+        char *iobuf = 0;
-       if (uuidCache)
-               return;
-@@ -104,6 +108,11 @@
-       if (!procpt)
-               return;
-+        iobuf = (char *)malloc(CBBUF);
-+        if (iobuf) {
-+          setvbuf(procpt, iobuf, _IOFBF, CBBUF);
-+        }
-+
-       for (firstPass = 1; firstPass >= 0; firstPass--) {
-           fseek(procpt, 0, SEEK_SET);
-@@ -144,6 +153,9 @@
-       }
-       fclose(procpt);
-+        if (iobuf) {
-+            free(iobuf);
-+        }
- }
- #define UUID   1
This page took 0.152165 seconds and 4 git commands to generate.