diff options
author | peter <peter@FreeBSD.org> | 1996-09-07 02:17:29 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-09-07 02:17:29 +0000 |
commit | 5551a9c30cbf080d8322298eef905c5416d0100d (patch) | |
tree | 6df70c014f0aea4d63b4e2c1b3ab381652b41b70 /libexec | |
parent | 78d7f7f610df679cbf9e2168fa59dc6defd20c57 (diff) | |
download | FreeBSD-src-5551a9c30cbf080d8322298eef905c5416d0100d.zip FreeBSD-src-5551a9c30cbf080d8322298eef905c5416d0100d.tar.gz |
wrong C bracketing, *blush*...
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/comsat/comsat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/comsat/comsat.c b/libexec/comsat/comsat.c index acfde8f..7508bb7 100644 --- a/libexec/comsat/comsat.c +++ b/libexec/comsat/comsat.c @@ -230,7 +230,7 @@ notify(utp, file, offset, folder) _exit(-1); } (void)tcgetattr(fileno(tp), &tio); - cr = (tio.c_oflag & (OPOST|ONLCR) == (OPOST|ONLCR)) ? "\n" : "\n\r"; + cr = ((tio.c_oflag & (OPOST|ONLCR)) == (OPOST|ONLCR)) ? "\n" : "\n\r"; (void)strncpy(name, utp->ut_name, sizeof(utp->ut_name)); name[sizeof(name) - 1] = '\0'; (void)fprintf(tp, "%s\007New mail for %s@%.*s\007 has arrived%s%s%s:%s----%s", |