Skip to content

Commit 1f90b39

Browse files
committed
Merge pull request #1 from jwilk/spelling
Fix typos
2 parents e894231 + 2e37077 commit 1f90b39

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

fstab.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ int process_fstab_entry(fstab_find_fs_data *data, const char *orig_line, int lin
9999
return -ENODEV;
100100
}
101101

102-
/* NOTE: for the /usr use casee this is sufficient, but in general
102+
/* NOTE: for the /usr use case this is sufficient, but in general
103103
* one needs to de-escape the source and dest fields, see e.g.
104104
* the fstab-decode utility.
105105
*/

log.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void showmsgv(va_list ap, const char *before1, const char *after1, const char *a
7777
iov[argc].iov_base = (char *)arg;
7878
iov[argc].iov_len = strlen(arg);
7979
argc++;
80-
/* We only support a fixed number of arguments arguments. */
80+
/* We only support a fixed number of arguments. */
8181
if (argc + 1 + extra_arg_count > 32)
8282
break;
8383
}

nfs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* The mount_nfs4 function is based on the nfs4mount function in
2323
* util-linux (but heavily modified), originally by Trond Myklebust
24-
* <[email protected]>, licensed under the GLPv2+.
24+
* <[email protected]>, licensed under the GPLv2+.
2525
*/
2626

2727
#include <sys/types.h>

nfs4.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* nfs4.h: NFSv4 kernel interface definition
55
* Copyright (C) 2002 Trond Myklebust <[email protected]>
6-
* Originally licensed under the GLPv2+.
6+
* Originally licensed under the GPLv2+.
77
*
88
* This program is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)