1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/x11-clocks/asclock-gtk/files/patch-ac
Jun Kuriyama 29561bfd74 Honor ${PREFIX}.
Make sense '-t' option.

Pointed out by:	Kentaro Inagaki <inagaki@tg.rim.or.jp>
1999-06-13 14:21:26 +00:00

20 lines
447 B
Plaintext

--- config.c~ Fri Mar 26 16:38:29 1999
+++ config.c Sat Jun 12 15:55:56 1999
@@ -52,14 +52,14 @@
fprintf(stderr, "dir : %s\n", *cpp);
if((dfd = opendir(*cpp)) == NULL)
- printf(" not found\n\n");
+ printf(" not found\n");
else {
while((dp = readdir(dfd)) != NULL)
if ( dp->d_name[0]!='.' )
printf("%s\n", dp->d_name);
closedir(dfd);
}
- printf("\n\n");
+ printf("\n");
}