mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-03-09 23:25:32 +07:00
hostname: properly deal with unset hostname in fedora configuration
This commit is contained in:
parent
2cc59dbfe0
commit
84b00965b7
3
fixme
3
fixme
@ -38,6 +38,7 @@
|
||||
* place /etc/inittab with explaining blurb.
|
||||
|
||||
* In command lines, support both "$FOO" and $FOO
|
||||
|
||||
* /etc must always take precedence even if we follow symlinks!
|
||||
|
||||
* vielleicht implizit immer auf syslog dependen?
|
||||
@ -48,8 +49,6 @@
|
||||
|
||||
* set_put(), hashmap_put() return values checken. i.e. == 0 macht kein free()!
|
||||
|
||||
* crash on missing hostname
|
||||
|
||||
* fix merging in .swap units
|
||||
|
||||
* pahole
|
||||
|
@ -101,10 +101,11 @@ static int read_hostname(char **hn) {
|
||||
}
|
||||
|
||||
*hn = k;
|
||||
break;
|
||||
r = 0;
|
||||
goto finish;
|
||||
}
|
||||
|
||||
r = 0;
|
||||
r = -ENOENT;
|
||||
|
||||
finish:
|
||||
fclose(f);
|
||||
|
Loading…
Reference in New Issue
Block a user