Skip to content

Commit 3e93027

Browse files
committed
Fix two typos
1 parent 8ad2012 commit 3e93027

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/home/home-util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
bool suitable_user_name(const char *name) {
1414

15-
/* Checks whether the specified name is suitable for management via home aread. Note that client-side
15+
/* Checks whether the specified name is suitable for management via homed. Note that client-side
1616
* we usually validate with the simple valid_user_group_name(), while server-side we are a bit more
1717
* restrictive, so that we can change the rules server-side without having to update things
1818
* client-side too. */

src/nss-systemd/nss-systemd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ enum nss_status _nss_systemd_getgrnam_r(
195195
if (!valid_user_group_name(name))
196196
return NSS_STATUS_NOTFOUND;
197197

198-
/* Synthesize records for root and nobody, in case they are missing form /etc/group */
198+
/* Synthesize records for root and nobody, in case they are missing from /etc/group */
199199
if (getenv_bool_secure("SYSTEMD_NSS_BYPASS_SYNTHETIC") <= 0) {
200200

201201
if (streq(name, root_group.gr_name)) {

0 commit comments

Comments
 (0)