Lines 106-117
$FreeBSD: ports/finance/opentaxsolver/fi
Link Here
|
106 |
invocation_path = strdup(argv[0]); |
106 |
invocation_path = strdup(argv[0]); |
107 |
k = strlen(invocation_path)-1; |
107 |
k = strlen(invocation_path)-1; |
108 |
while ((k>0) && (invocation_path[k]!=slashchr)) k--; |
108 |
while ((k>0) && (invocation_path[k]!=slashchr)) k--; |
109 |
@@ -1436,7 +1436,7 @@ |
|
|
110 |
OtkMakeImagePanel_ImgPtr( subpanel, logo_image, 1.5, 5.0, 96.8, 89.85 ); |
111 |
} |
112 |
#else |
113 |
- sprintf(tmpstr,"%s..%csrc%cGUI%cotslogo.ppm", invocation_path, slashchr, slashchr, slashchr ); |
114 |
+ snprintf(tmpstr, sizeof(tmpstr), "%%PREFIX%%/share/ots/otslogo.ppm"); |
115 |
testfile = fopen(tmpstr,"r"); /* External image-file. */ |
116 |
if (testfile!=0) |
117 |
{ /* Only attempt to show image if image-file is where we expect to find it. */ |