diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-10 21:42:55 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-10 21:42:55 +0200 |
commit | 18149b9f57f8971ebc7d6401fc0a08a3173bcb29 (patch) | |
tree | c595704ebcf8fcb7cae220e91486e7d665676161 /main.c | |
parent | 97c4f35cd541baa2f985ff702a5b9f0b8b524a53 (diff) |
main: remove testing assert
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -150,7 +150,6 @@ static int parse_proc_cmdline_word(const char *word) { unsigned i; /* SysV compatibility */ - for (i = 0; i < ELEMENTSOF(rlmap); i += 2) if (streq(word, rlmap[i])) return set_default_unit(rlmap[i+1]); @@ -364,12 +363,12 @@ int main(int argc, char *argv[]) { /* Make sure D-Bus doesn't fiddle with the SIGPIPE handlers */ dbus_connection_set_change_sigpipe(FALSE); - /* Open the logging devices, if possible and necessary*/ + /* Open the logging devices, if possible and necessary */ log_open_syslog(); log_open_kmsg(); + /* Make sure we leave a core dump */ install_crash_handler(); - assert(!"esel"); log_debug("systemd running in %s mode.", manager_running_as_to_string(running_as)); |