[BACK]Return to auth.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/auth.c between version 1.142 and 1.143

version 1.142, 2019/10/16 06:05:39 version 1.143, 2019/11/25 00:54:23
Line 884 
Line 884 
   
         snprintf(buf, sizeof(buf), "%d", opts->force_tun_device);          snprintf(buf, sizeof(buf), "%d", opts->force_tun_device);
         /* Try to keep this alphabetically sorted */          /* Try to keep this alphabetically sorted */
         snprintf(msg, sizeof(msg), "key options:%s%s%s%s%s%s%s%s%s%s%s%s%s",          snprintf(msg, sizeof(msg), "key options:%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
             opts->permit_agent_forwarding_flag ? " agent-forwarding" : "",              opts->permit_agent_forwarding_flag ? " agent-forwarding" : "",
             opts->force_command == NULL ? "" : " command",              opts->force_command == NULL ? "" : " command",
             do_env ?  " environment" : "",              do_env ?  " environment" : "",
Line 897 
Line 897 
             opts->force_tun_device == -1 ? "" : " tun=",              opts->force_tun_device == -1 ? "" : " tun=",
             opts->force_tun_device == -1 ? "" : buf,              opts->force_tun_device == -1 ? "" : buf,
             opts->permit_user_rc ? " user-rc" : "",              opts->permit_user_rc ? " user-rc" : "",
             opts->permit_x11_forwarding_flag ? " x11-forwarding" : "");              opts->permit_x11_forwarding_flag ? " x11-forwarding" : "",
               opts->no_require_user_presence ? " no-touch-required" : "");
   
         debug("%s: %s", loc, msg);          debug("%s: %s", loc, msg);
         if (do_remote)          if (do_remote)

Legend:
Removed from v.1.142  
changed lines
  Added in v.1.143