diff options
author | Stef Walter <stef@memberwebs.com> | 2008-07-02 20:32:39 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2008-07-02 20:32:39 +0000 |
commit | d8f7b96b39016dc6976a80d46eaebea950b89b55 (patch) | |
tree | 602587cb94d5e168ad8453d9a6354689417b0aae /plugin | |
parent | 7ad0489523ada84a8f5f0497befc8684fb6f5f79 (diff) |
Version 0.2
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/dnsnotify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/dnsnotify.c b/plugin/dnsnotify.c index c24b90c..58f4bec 100644 --- a/plugin/dnsnotify.c +++ b/plugin/dnsnotify.c @@ -269,7 +269,7 @@ notify_dns_slaves (char *zone, char **ns) if (write_all (dnsnotify_pipe, "NOTIFY: ", 8) < 0 || write_all (dnsnotify_pipe, zone, strlen (zone)) < 0 || write_all (dnsnotify_pipe, " ", 1) < 0 || - write_all (dnsnotify_pipe, *ns, strlen (*ns)) < 0 || + write_all (dnsnotify_pipe, n, strlen (n)) < 0 || write_all (dnsnotify_pipe, "\n", 1) < 0) { if (errno == EPIPE) { complete = 0; |