diff options
author | fishsoupisgood <github@madingley.org> | 2018-04-02 13:44:37 +0100 |
---|---|---|
committer | fishsoupisgood <github@madingley.org> | 2018-04-02 13:44:37 +0100 |
commit | c9b8482030929f53937e32fce63c78a4a0acadfd (patch) | |
tree | 8be9975d6dc207b123011b7ce4c344503c9b5e53 /src/util.c | |
parent | a579468e37a003185329493eb8db2792204865fb (diff) | |
download | sympathy-c9b8482030929f53937e32fce63c78a4a0acadfd.tar.gz sympathy-c9b8482030929f53937e32fce63c78a4a0acadfd.tar.bz2 sympathy-c9b8482030929f53937e32fce63c78a4a0acadfd.zip |
some fixes and support for syslog logging
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ default_termios (struct termios *termios) void client_termios (struct termios *termios) { - memset (termios, 0, sizeof (termios)); + memset (termios, 0, sizeof (*termios)); termios->c_iflag = ICRNL | IXON | PARMRK | INPCK; termios->c_oflag = OPOST | ONLCR | NL0 | CR0 | TAB0 | BS0 | VT0 | FF0; |