1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/irc/irssistats/files/patch-irssistats.c
Pietro Cerutti 756156fec8 - Fix build with clang
- Trim Makefile header

Feature safe:	yes
2012-12-03 10:44:14 +00:00

33 lines
748 B
C

--- irssistats.c.orig 2007-11-10 19:40:55.000000000 +0100
+++ irssistats.c 2012-12-03 11:42:45.000000000 +0100
@@ -1561,19 +1561,19 @@
fclose(fic);
}
-void parse_config(char *configfile)
+void expand(char *path)
{
- void expand(char *path)
+ char temp[MAXLINELENGTH];
+ if (*path=='~')
{
- char temp[MAXLINELENGTH];
- if (*path=='~')
- {
- snprintf(temp,MAXLINELENGTH-1,"%s%s",getenv("HOME"),path+1);
- temp[MAXLINELENGTH-1]='\0';
- strcpy(path,temp);
- }
+ snprintf(temp,MAXLINELENGTH-1,"%s%s",getenv("HOME"),path+1);
+ temp[MAXLINELENGTH-1]='\0';
+ strcpy(path,temp);
}
-
+}
+
+void parse_config(char *configfile)
+{
FILE *fic;
char line[MAXLINELENGTH];
char keyword[MAXLINELENGTH];