diff options
Diffstat (limited to 'sm/keydb.c')
-rw-r--r-- | sm/keydb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sm/keydb.c b/sm/keydb.c index 8832643b9..6c5c77364 100644 --- a/sm/keydb.c +++ b/sm/keydb.c @@ -412,7 +412,7 @@ lock_all (KEYDB_HANDLE hd) int i, rc = 0; /* Fixme: This locking scheme may lead to deadlock if the resources - are not added in the same order all processes. We are + are not added in the same order by all processes. We are currently only allowing one resource so it is not a problem. */ for (i=0; i < hd->used; i++) { @@ -1051,7 +1051,7 @@ classify_user_id (const char *name, * we set it to the correct value right at the end of this function */ memset (desc, 0, sizeof *desc); *force_exact = 0; - /* skip leading spaces. Fixme: what about trailing white space? */ + /* Skip leading spaces. Fixme: what about trailing white space? */ for(s = name; *s && spacep (s); s++ ) ; |