blob: 7e9a294fee11c8d35ec08686579ffad86354edca [file] [log] [blame]
[PATCH] replace susv3 legacy functions with modern equivalents
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
syslog.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: sysklogd-1.4.1/syslog.c
===================================================================
--- sysklogd-1.4.1.orig/syslog.c
+++ sysklogd-1.4.1/syslog.c
@@ -178,7 +178,7 @@
return;
(void)strcat(tbuf, "\r\n");
cnt += 2;
- p = index(tbuf, '>') + 1;
+ p = strchr(tbuf, '>') + 1;
(void)write(fd, p, cnt - (p - tbuf));
(void)close(fd);
}