summaryrefslogtreecommitdiffstats
path: root/support/nfs/nfssvc.c
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2007-02-12 11:07:50 +1100
committerNeil Brown <neilb@suse.de>2007-02-12 11:07:50 +1100
commitf981e46adaab5da3d105b5adf735e9ce9c19a1d5 (patch)
tree207401d0b61bad20dabc3777f67e79906163fbb1 /support/nfs/nfssvc.c
parent395a1d1586c131d3830fac58d6aa6f9ac8e3408f (diff)
downloadnfs-utils-f981e46adaab5da3d105b5adf735e9ce9c19a1d5.tar.gz
nfs-utils-f981e46adaab5da3d105b5adf735e9ce9c19a1d5.tar.xz
nfs-utils-f981e46adaab5da3d105b5adf735e9ce9c19a1d5.zip
Correct spelling error
writting -> writing
Diffstat (limited to 'support/nfs/nfssvc.c')
-rw-r--r--support/nfs/nfssvc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/nfs/nfssvc.c b/support/nfs/nfssvc.c
index ef7d8e1..9bbc9a5 100644
--- a/support/nfs/nfssvc.c
+++ b/support/nfs/nfssvc.c
@@ -95,7 +95,7 @@ nfssvc_setfds(int port, unsigned int ctlbits, char *haddr)
snprintf(buf, BUFSIZ,"%d\n", udpfd);
if (write(fd, buf, strlen(buf)) != strlen(buf)) {
syslog(LOG_ERR,
- "nfssvc: writting fds to kernel failed: errno %d (%s)",
+ "nfssvc: writing fds to kernel failed: errno %d (%s)",
errno, strerror(errno));
}
close(fd);
@@ -107,7 +107,7 @@ nfssvc_setfds(int port, unsigned int ctlbits, char *haddr)
snprintf(buf, BUFSIZ,"%d\n", tcpfd);
if (write(fd, buf, strlen(buf)) != strlen(buf)) {
syslog(LOG_ERR,
- "nfssvc: writting fds to kernel failed: errno %d (%s)",
+ "nfssvc: writing fds to kernel failed: errno %d (%s)",
errno, strerror(errno));
}
}