You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-misc/fortune-mod/files/01_all_fortune_all-fix.patch

22 lines
711 B

--- a/fortune/fortune.c
+++ b/fortune/fortune.c
@@ -974,7 +974,7 @@
if (!ret)
ret=add_file(percent, fullpathname, NULL, &File_list,
&File_tail, NULL);
- if ( (!ret && fullpathname != locpathname) || strcmp(sp, "all") == 0 )
+ if (!ret && strncmp(fullpathname, locpathname, sizeof(fullpathname)))
ret=add_file(percent, locpathname, NULL, &File_list,
&File_tail, NULL);
@@ -985,7 +985,8 @@
}
if (!ret)
return FALSE;
-
+ if (strncmp(fullpathname, locpathname, sizeof(fullpathname)) && strcmp(sp, "all") == 0)
+ add_file(percent, locpathname, NULL, &File_list, &File_tail, NULL);
}
else
if (!add_file(percent, fullpathname, NULL, &File_list,