[IPCONFIG]

Revert r67318.
_tasctime already returns a newline.

svn path=/trunk/; revision=67411
This commit is contained in:
Sylvain Petreolle 2015-04-25 12:53:50 +00:00
parent 23824431e9
commit 1dc5cd9816

View file

@ -542,8 +542,8 @@ VOID ShowInfo(BOOL bAll)
if (pAdapter->DhcpEnabled)
{
_tprintf(_T("\tLease Obtained. . . . . . . . . . : %s\n"), _tasctime(localtime(&pAdapter->LeaseObtained)));
_tprintf(_T("\tLease Expires . . . . . . . . . . : %s\n"), _tasctime(localtime(&pAdapter->LeaseExpires)));
_tprintf(_T("\tLease Obtained. . . . . . . . . . : %s"), _tasctime(localtime(&pAdapter->LeaseObtained)));
_tprintf(_T("\tLease Expires . . . . . . . . . . : %s"), _tasctime(localtime(&pAdapter->LeaseExpires)));
}
}
_tprintf(_T("\n"));