]> granicus.if.org Git - sudo/commitdiff
ID= -> TSID= for transcript ID
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 7 Sep 2009 14:18:06 +0000 (14:18 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 7 Sep 2009 14:18:06 +0000 (14:18 +0000)
logging.c

index aacdd8c90d0cb0f4608729af02feb5bfce380d52..af01f3c8b8fcaec47215f25aadb0d98acf6bdadd 100644 (file)
--- a/logging.c
+++ b/logging.c
@@ -658,7 +658,7 @@ get_timestr()
 #define        LL_GROUP_STR    "GROUP="
 #define        LL_ENV_STR      "ENV="
 #define        LL_CMND_STR     "COMMAND="
-#define        LL_ID_STR       "ID="
+#define        LL_TSID_STR     "TSID="
 
 /*
  * Allocate and fill in a new logline.
@@ -689,7 +689,7 @@ new_logline(message, serrno)
     if (runas_gr != NULL)
        len += sizeof(LL_GROUP_STR) + 2 + strlen(runas_gr->gr_name);
     if (sudo_user.sessid[0] != '\0')
-       len += sizeof(LL_ID_STR) + 2 + strlen(sudo_user.sessid);
+       len += sizeof(LL_TSID_STR) + 2 + strlen(sudo_user.sessid);
     if (sudo_user.env_vars != NULL) {
        size_t evlen = 0;
        struct list_member *cur;
@@ -744,7 +744,7 @@ new_logline(message, serrno)
            goto toobig;
     }
     if (sudo_user.sessid[0] != '\0') {
-       if (strlcat(line, LL_ID_STR, len) >= len ||
+       if (strlcat(line, LL_TSID_STR, len) >= len ||
            strlcat(line, sudo_user.sessid, len) >= len ||
            strlcat(line, " ; ", len) >= len)
            goto toobig;