syslogd: fix shmat error check

This commit is contained in:
Denis Vlasenko 2008-01-07 15:58:02 +00:00
parent bcd5fc12ec
commit 4e9ca75281

View File

@ -218,7 +218,7 @@ static void ipcsyslog_init(void)
}
G.shbuf = shmat(G.shmid, NULL, 0);
if (!G.shbuf) {
if (G.shbuf == (void*) -1L) { /* shmat has bizarre error return */
bb_perror_msg_and_die("shmat");
}