diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-12 11:20:39 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-12-12 11:20:39 +0000 |
commit | 126da9ec2deade2fbcd8e57e595a69b91acf7265 (patch) | |
tree | c2c445684c8a94b7d3125473c01458f11644d982 | |
parent | b7d53420033c3bbaea0127d262cfaf52eeea7745 (diff) | |
download | busybox-126da9ec2deade2fbcd8e57e595a69b91acf7265.tar.gz |
- typo: s/sucess/success/g
What's up with loginutils/su.c line 42: "SYSLOG_SUCESS" ? Please have a look..
-rw-r--r-- | archival/tar.c | 2 | ||||
-rw-r--r-- | util-linux/mount.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/archival/tar.c b/archival/tar.c index 0d3fb926c..b2967463e 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -464,7 +464,7 @@ static inline int writeTarFile(const int tar_fd, const int verboseFlag, dup2(tbInfo.tarFd, 1); close(gzipStatusPipe[0]); - fcntl(gzipStatusPipe[1], F_SETFD, FD_CLOEXEC); /* close on exec shows sucess */ + fcntl(gzipStatusPipe[1], F_SETFD, FD_CLOEXEC); /* close on exec shows success */ execlp(zip_exec, zip_exec, "-f", NULL); vfork_exec_errno = errno; diff --git a/util-linux/mount.c b/util-linux/mount.c index 15b2b192f..cc6b73eb0 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -350,7 +350,7 @@ mount_it_now: if(!f || !rc) break; } - /* If the mount was sucessful, and we're maintaining an old-style + /* If the mount was successful, and we're maintaining an old-style * mtab file by hand, add new entry to it now. */ if((!rc || fakeIt) && useMtab) { FILE *mountTable = setmntent(bb_path_mtab_file, "a+"); |