Move the MPPE keysize display in ``show ccp''.

This commit is contained in:
Brian Somers 2000-10-30 00:15:33 +00:00
parent 9b9967924b
commit ba6fcad9cf
1 changed files with 2 additions and 2 deletions

View File

@ -175,9 +175,9 @@ ccp_ReportStatus(struct cmdargs const *arg)
prompt_Printf(arg->prompt, " DEFLATE24: %s\n",
command_ShowNegval(ccp->cfg.neg[CCP_NEG_DEFLATE24]));
#ifdef HAVE_DES
prompt_Printf(arg->prompt, " MPPE: %s\n",
prompt_Printf(arg->prompt, " MPPE: %s",
command_ShowNegval(ccp->cfg.neg[CCP_NEG_MPPE]));
prompt_Printf(arg->prompt, "Key Size = %d-bits\n", ccp->cfg.mppe.keybits);
prompt_Printf(arg->prompt, " (Key Size = %d-bits)\n", ccp->cfg.mppe.keybits);
#endif
return 0;
}