diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-01-08 03:39:25 -0500 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2010-01-08 22:02:51 +0000 |
commit | ecf9ef49a724f6b95039bd760893f51a920f017b (patch) | |
tree | a3d04acb1e322bc3e830369deb28158cb7948c8c /src/librc | |
parent | bb45f0eabc8e768296cdf678ff8552a28342080a (diff) |
random spelling fixes
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'src/librc')
-rw-r--r-- | src/librc/librc.c | 2 | ||||
-rw-r--r-- | src/librc/rc.h.in | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/librc/librc.c b/src/librc/librc.c index 34bd9e15..fe9e1b6b 100644 --- a/src/librc/librc.c +++ b/src/librc/librc.c @@ -377,7 +377,7 @@ rc_runlevel_stacks(const char *runlevel) } librc_hidden_def(rc_runlevel_stacks) -/* Resolve a service name to it's full path */ +/* Resolve a service name to its full path */ char * rc_service_resolve(const char *service) { diff --git a/src/librc/rc.h.in b/src/librc/rc.h.in index 4b7977eb..d9d04539 100644 --- a/src/librc/rc.h.in +++ b/src/librc/rc.h.in @@ -117,7 +117,7 @@ bool rc_runlevel_stopping(void); /*! @name RC * A service can be given as a full path or just its name. - * If its just a name then we try to resolve the service to a full path. + * If it's just a name then we try to resolve the service to a full path. * This should allow the use if local init.d directories in the future. */ /*! @brief States a service can be in */ @@ -326,7 +326,7 @@ typedef void *RC_DEPTREE; #endif /*! Check to see if source is newer than target. - * If target is a directory then we traverse it and it's children. + * If target is a directory then we traverse it and its children. * @param source * @param target * @param mtime of newest target @@ -335,7 +335,7 @@ typedef void *RC_DEPTREE; bool rc_newer_than(const char *, const char *, time_t *, char *); /*! Check to see if source is older than target. - * If target is a directory then we traverse it and it's children. + * If target is a directory then we traverse it and its children. * @param source * @param target * @param mtime of oldest target @@ -446,7 +446,7 @@ RC_STRINGLIST *rc_config_load(const char *); /*! Return the value of the entry from a key=value list. */ char *rc_config_value(RC_STRINGLIST *, const char *); -/*! Check if a variable is a boolean and return it's value. +/*! Check if a variable is a boolean and return its value. * If variable is not a boolean then we set errno to be ENOENT when it does * not exist or EINVAL if it's not a boolean. * @param variable to check @@ -485,9 +485,9 @@ bool rc_stringlist_delete(RC_STRINGLIST *, const char *); * @return pointer to item */ RC_STRING *rc_stringlist_find(RC_STRINGLIST *, const char *); -/*! Split a string into a stringlist based on seperator. +/*! Split a string into a stringlist based on separator. * @param string to split - * @param seperator + * @param separator * @return new list */ RC_STRINGLIST *rc_stringlist_split(const char *, const char *); |