aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2019-07-08 15:00:15 +0200
committerMicael Karlberg <[email protected]>2019-07-08 15:00:15 +0200
commit231b555feb463550864c7b4767dd07df07b4b287 (patch)
treeda46e38a92b2be011c37dba6494f0dc559d4b003
parent0eb7da5dacdc6a0a0ef1c83eba20e41047092af3 (diff)
parent0199fc732374d0aab3b30a7153f62b03b3b39680 (diff)
downloadotp-231b555feb463550864c7b4767dd07df07b4b287.tar.gz
otp-231b555feb463550864c7b4767dd07df07b4b287.tar.bz2
otp-231b555feb463550864c7b4767dd07df07b4b287.zip
Merge branch 'maint'
-rw-r--r--lib/snmp/src/app/snmp.erl11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/snmp/src/app/snmp.erl b/lib/snmp/src/app/snmp.erl
index 7598f936c9..1e6a93deff 100644
--- a/lib/snmp/src/app/snmp.erl
+++ b/lib/snmp/src/app/snmp.erl
@@ -596,15 +596,6 @@ print_mod_info(Prefix, {Module, Info}) ->
_ ->
"Not found"
end,
- CompDate =
- case key1search(compile_time, Info) of
- {value, {Year, Month, Day, Hour, Min, Sec}} ->
- io_lib:format(
- "~w-~2..0w-~2..0w ~2..0w:~2..0w:~2..0w",
- [Year, Month, Day, Hour, Min, Sec]);
- _ ->
- "Not found"
- end,
Digest =
case key1search(md5, Info) of
{value, MD5} when is_binary(MD5) ->
@@ -616,13 +607,11 @@ print_mod_info(Prefix, {Module, Info}) ->
"~s Vsn: ~s~n"
"~s App vsn: ~s~n"
"~s Compiler ver: ~s~n"
- "~s Compile time: ~s~n"
"~s MD5 digest: ~s~n",
[Prefix, Module,
Prefix, Vsn,
Prefix, AppVsn,
Prefix, CompVer,
- Prefix, CompDate,
Prefix, Digest]),
ok.