summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-22 09:23:32 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-10-22 09:23:32 +0200
commit0e8ac8b7a1a100a87900ae010edacde50e21af2c (patch)
tree399c9aa0fcfb13c701abd8845058f80fa5633faa
parentfba30c4cf89fe4c77415f8bff1567b1ee4672f83 (diff)
Fix LSB filename
-rw-r--r--plugins/sysinfo/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sysinfo/parse.c b/plugins/sysinfo/parse.c
index 9e185874..45399496 100644
--- a/plugins/sysinfo/parse.c
+++ b/plugins/sysinfo/parse.c
@@ -375,7 +375,7 @@ int xs_parse_distro(char *name)
 	FILE *fp = NULL;
 	char buffer[bsize], *pos = NULL;
 	
-	if((fp = fopen("/etc/lsb_release", "r")) != NULL)
+	if((fp = fopen("/etc/lsb-release", "r")) != NULL)
 	{
 		char id[bsize], codename[bsize], release[bsize];
 		strcpy(id, "?");