summaryrefslogtreecommitdiff
path: root/lang/ferite/files/patch-scripts::test::test.fe
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ferite/files/patch-scripts::test::test.fe')
-rw-r--r--lang/ferite/files/patch-scripts::test::test.fe26
1 files changed, 26 insertions, 0 deletions
diff --git a/lang/ferite/files/patch-scripts::test::test.fe b/lang/ferite/files/patch-scripts::test::test.fe
new file mode 100644
index 000000000000..a8e19aef6fb8
--- /dev/null
+++ b/lang/ferite/files/patch-scripts::test::test.fe
@@ -0,0 +1,26 @@
+--- scripts/test/test.fe.orig Thu Jul 26 01:10:56 2001
++++ scripts/test/test.fe Sun Aug 26 00:06:31 2001
+@@ -17,17 +17,17 @@
+ a_global_int = 10;
+ testfile = new File();
+
+- Console.println( "Printing Out All ext2 Partitions in /etc/fstab" );
++ Console.println( "Printing Out All ufs Partitions in /etc/fstab" );
+ testfile->open( "/etc/fstab", "r" );
+ Console.println( "Here." );
+ while( blam = testfile->readln() && ! testfile->eof() )
+ {
+ if( blam =~ /
+- (\/dev\/[hs]d[a-g][1-9]) # device entry
+- [\ \t]* # whitespace
+- (\/[a-z]*(\/[a-z]*)*) # mount point
+- [\ \t]* # whitespace
+- ext2 # force adherance to ext2
++ (\/dev\/[ad][ad][0-9]s[1-4][a-h]) # device entry
++ [\ \t]* # whitespace
++ (\/[a-z]*(\/[a-z]*)*) # mount point
++ [\ \t]* # whitespace
++ ufs # force adherance to ext2
+ /xoi /* make usre it's not case sensitive */
+ )
+ {