diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-22 09:23:32 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-22 09:23:32 +0200 |
commit | 0e8ac8b7a1a100a87900ae010edacde50e21af2c (patch) | |
tree | 399c9aa0fcfb13c701abd8845058f80fa5633faa | |
parent | fba30c4cf89fe4c77415f8bff1567b1ee4672f83 (diff) |
Fix LSB filename
-rw-r--r-- | plugins/sysinfo/parse.c | 2 |
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, "?"); |