diff options
| author | Ulrich Spörlein <uqs@FreeBSD.org> | 2012-01-07 16:09:54 +0000 |
|---|---|---|
| committer | Ulrich Spörlein <uqs@FreeBSD.org> | 2012-01-07 16:09:54 +0000 |
| commit | 1acf0dba17d74c59fc87d450664df950ff127795 (patch) | |
| tree | 6b1a6cc6157b12184a6808e335431115997338af /libexec/rbootd | |
| parent | b07e9f3facc0a0d99012f414027624e517276c76 (diff) | |
Notes
Diffstat (limited to 'libexec/rbootd')
| -rw-r--r-- | libexec/rbootd/parseconf.c | 6 | ||||
| -rw-r--r-- | libexec/rbootd/rbootd.c | 2 | ||||
| -rw-r--r-- | libexec/rbootd/rmpproto.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/libexec/rbootd/parseconf.c b/libexec/rbootd/parseconf.c index 2eb33e0a370e..7151dae9ef13 100644 --- a/libexec/rbootd/parseconf.c +++ b/libexec/rbootd/parseconf.c @@ -145,7 +145,7 @@ ParseConfig(void) */ if ((addr = ParseAddr(bcp)) == NULL) { syslog(LOG_ERR, - "ParseConfig: line %d: cant parse <%s>", + "ParseConfig: line %d: can't parse <%s>", linecnt, bcp); continue; } @@ -193,7 +193,7 @@ ParseConfig(void) /* * Restricted list of boot files were spec'd, * however, none of them were found. Since we - * apparently cant let them boot "just anything", + * apparently can't let them boot "just anything", * the entire record is invalidated. */ if (i == 0) { @@ -355,7 +355,7 @@ GetBootFiles(void) (void) closedir(dfd); /* close BootDir */ - if (i == 0) /* cant find any boot files */ + if (i == 0) /* can't find any boot files */ syslog(LOG_ERR, "GetBootFiles: no boot files (%s)\n", BootDir); return(i); diff --git a/libexec/rbootd/rbootd.c b/libexec/rbootd/rbootd.c index e71b1ec53c05..e56a3e77a428 100644 --- a/libexec/rbootd/rbootd.c +++ b/libexec/rbootd/rbootd.c @@ -231,7 +231,7 @@ main(int argc, char *argv[]) r = rset; - if (RmpConns == NULL) { /* timeout isnt necessary */ + if (RmpConns == NULL) { /* timeout isn't necessary */ nsel = select(maxfds, &r, NULL, NULL, NULL); } else { timeout.tv_sec = RMP_TIMEOUT; diff --git a/libexec/rbootd/rmpproto.c b/libexec/rbootd/rmpproto.c index 78c2488f9a84..8d51445165ad 100644 --- a/libexec/rbootd/rmpproto.c +++ b/libexec/rbootd/rmpproto.c @@ -401,7 +401,7 @@ SendReadRepl(RMPCONN *rconn) int madeconn = 0; /* - * Find the old connection. If one doesnt exist, create one only + * Find the old connection. If one doesn't exist, create one only * to return the error code. */ if ((oldconn = FindConn(rconn)) == NULL) { @@ -515,7 +515,7 @@ BootDone(RMPCONN *rconn) struct rmp_packet *rpl; /* - * If we cant find the connection, ignore the request. + * If we can't find the connection, ignore the request. */ if ((oldconn = FindConn(rconn)) == NULL) { syslog(LOG_ERR, "BootDone: no existing connection (%s)", |
