source: patches/yaboot-1.3.13-fix-1.patch @ f99d122

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since f99d122 was 69cde8d, checked in by Jim Gifford <clfs@…>, 18 years ago

Added: All patches needed for the book.

  • Property mode set to 100644
File size: 578 bytes
RevLine 
[69cde8d]1Submitted By: Jeremy Huntwork <jhuntwork@linuxfromscratch.org>
2Date: 2005-03-23
3Initial Package Version: 1.3.13
4Upstream Status: Applied
5Origin: Jeremy Huntwork
6Description: Fixes Compile Error.
7
8diff -Naur yaboot-1.3.13.orig/lib/strstr.c yaboot-1.3.13/lib/strstr.c
9--- yaboot-1.3.13.orig/lib/strstr.c     2001-09-20 09:15:31.000000000 -0400
10+++ yaboot-1.3.13/lib/strstr.c  2005-02-20 22:03:10.215796824 -0500
11@@ -76,7 +76,9 @@
12              a = *++haystack;
13              if (a == '\0')
14                goto ret0;
15-shloop:            }
16+shloop:       
17+               a = a;
18+       }
19           while (a != b);
20 
21 jin:     a = *++haystack;
Note: See TracBrowser for help on using the repository browser.