From 79d062ab99fef3d7bb5982ac99d9cfcbe6d0cd83 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sat, 14 Sep 2024 14:43:27 +0200 Subject: [PATCH] package/makedevs/makedevs.c: fix typos And replace Couldn't with 'Could not' for clarity. Signed-off-by: Peter Korsgaard Signed-off-by: Yann E. MORIN --- package/makedevs/makedevs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/makedevs/makedevs.c b/package/makedevs/makedevs.c index a5c9c7d64d..be76155ab6 100644 --- a/package/makedevs/makedevs.c +++ b/package/makedevs/makedevs.c @@ -165,7 +165,7 @@ int bb_make_directory (char *path, long mode, int flags) } /* Since the directory exists, don't attempt to change * permissions if it was the full target. Note that - * this is not an error conditon. */ + * this is not an error condition. */ if (!c) { umask(mask); return 0; @@ -480,11 +480,11 @@ int main(int argc, char **argv) } if (optind >= argc || (rootdir=argv[optind])==NULL) { - bb_error_msg_and_die("root directory not speficied"); + bb_error_msg_and_die("root directory not specified"); } if (chdir(rootdir) != 0) { - bb_perror_msg_and_die("Couldnt chdir to %s", rootdir); + bb_perror_msg_and_die("Could not chdir to %s", rootdir); } umask(0);