]> diplodocus.org Git - nmh/commitdiff
Corrected comment: whom(1) does not use context_foil().
authorDavid Levine <levinedl@acm.org>
Sun, 28 Oct 2018 14:45:08 +0000 (10:45 -0400)
committerDavid Levine <levinedl@acm.org>
Sun, 28 Oct 2018 14:45:08 +0000 (10:45 -0400)
sbr/mts.c

index 60e4c3c2996222c8ca86c37355ab31b3416ef9cd..13c3a08a0fef18e494f3a51b7186f52356addb0b 100644 (file)
--- a/sbr/mts.c
+++ b/sbr/mts.c
@@ -357,8 +357,8 @@ getuserinfo (void)
     /* If there's a Local-Mailbox profile component, try to extract
        the username from it.  But don't try very hard, this assumes
        the very simple User Name <user@name.com> form.
-       Note that post(8) and whom(1) use context_foil (), so they
-       won't see the profile component. */
+       Note that post(8) uses context_foil(), so it won't see the profile
+       component. */
     if ((np = context_find("Local-Mailbox")) != NULL) {
        char *left_angle_bracket = strchr (np, '<');
        char *at_sign = strchr (np, '@');
@@ -397,8 +397,8 @@ getuserinfo (void)
     /* The $SIGNATURE environment variable overrides the GECOS field's idea of
        your real name. If SIGNATURE isn't set, use the Signature profile
        setting if it exists.
-       Note that post(8) and whom(1) use context_foil (), so they
-       won't see the profile component. */
+       Note that post(8) uses context_foil(), so it won't see the profile
+       component. */
     if ((cp = getenv ("SIGNATURE")) && *cp)
        strncpy (fullname, cp, sizeof(fullname));
     else if ((cp = context_find("Signature")))