aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/fdisk.c12
-rw-r--r--util-linux/nfsmount.c4
2 files changed, 8 insertions, 8 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c
index 2042951d9..8ceeb4835 100644
--- a/util-linux/fdisk.c
+++ b/util-linux/fdisk.c
@@ -5075,7 +5075,7 @@ static void
add_partition(int n, int sys)
{
char mesg[256]; /* 48 does not suffice in Japanese */
- int i, readed = 0;
+ int i, num_read = 0;
struct partition *p = ptes[n].part_table;
struct partition *q = ptes[ext_index].part_table;
long long llimit;
@@ -5124,12 +5124,12 @@ add_partition(int n, int sys)
}
if (start > limit)
break;
- if (start >= temp+units_per_sector && readed) {
+ if (start >= temp+units_per_sector && num_read) {
printf(_("Sector %llu is already allocated\n"), (unsigned long long)temp);
temp = start;
- readed = 0;
+ num_read = 0;
}
- if (!readed && start == temp) {
+ if (!num_read && start == temp) {
off_t saved_start;
saved_start = start;
@@ -5139,9 +5139,9 @@ add_partition(int n, int sys)
start = (start - 1) * units_per_sector;
if (start < saved_start) start = saved_start;
}
- readed = 1;
+ num_read = 1;
}
- } while (start != temp || !readed);
+ } while (start != temp || !num_read);
if (n > 4) { /* NOT for fifth partition */
struct pte *pe = &ptes[n];
diff --git a/util-linux/nfsmount.c b/util-linux/nfsmount.c
index 7b742cb5f..4ab415f0f 100644
--- a/util-linux/nfsmount.c
+++ b/util-linux/nfsmount.c
@@ -623,7 +623,7 @@ int nfsmount(const char *spec, const char *node, int *flags,
return retval;
}
- /* create mount deamon client */
+ /* create mount daemon client */
/* See if the nfs host = mount host. */
if (mounthost) {
if (mounthost[0] >= '0' && mounthost[0] <= '9') {
@@ -835,7 +835,7 @@ int nfsmount(const char *spec, const char *node, int *flags,
#endif
}
#ifdef NFS_MOUNT_DEBUG
- printf(_("using port %d for nfs deamon\n"), port);
+ printf(_("using port %d for nfs daemon\n"), port);
#endif
server_addr.sin_port = htons(port);
/*