Fix LSB filename

This commit is contained in:
Berke Viktor 2012-10-22 09:23:32 +02:00
parent fba30c4cf8
commit 0e8ac8b7a1
1 changed files with 1 additions and 1 deletions

View File

@ -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, "?");