From b1e0b99aff57351419c24c618ccb00ae0fb142f9 Mon Sep 17 00:00:00 2001 From: James Morris Date: Sat, 18 Nov 2000 05:14:39 +0000 Subject: added ipq_errstr() to API --- libipq/libipq.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'libipq/libipq.c') diff --git a/libipq/libipq.c b/libipq/libipq.c index 93d76f14..ef3a0cd1 100644 --- a/libipq/libipq.c +++ b/libipq/libipq.c @@ -296,6 +296,11 @@ int ipq_ctl(const struct ipq_handle *h, int request, ...) return 1; } +char *ipq_errstr(void) +{ + return ipq_strerror(ipq_errno); +} + void ipq_perror(const char *s) { if (s) @@ -303,7 +308,7 @@ void ipq_perror(const char *s) else fputs("ERROR", stderr); if (ipq_errno) - fprintf(stderr, ": %s", ipq_strerror(ipq_errno)); + fprintf(stderr, ": %s", ipq_errstr()); if (errno) fprintf(stderr, ": %s", strerror(errno)); fputc('\n', stderr); -- cgit v1.2.3