Use correct type when printing remote_port.

svn path=/trunk/; revision=26676
This commit is contained in:
Stig Bjørlykke 2008-11-03 12:09:11 +00:00
parent 395bad32ac
commit 483f45be1c
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ capture_opts_log(const char *log_domain, GLogLevelFlags log_level, capture_optio
"Unknown");
if (capture_opts->src_type == CAPTURE_IFREMOTE) {
g_log(log_domain, log_level, "Remote host : %s", capture_opts->remote_host);
g_log(log_domain, log_level, "Remote port : %u", capture_opts->remote_port);
g_log(log_domain, log_level, "Remote port : %s", capture_opts->remote_port);
}
g_log(log_domain, log_level, "Authentication : %s",
capture_opts->auth_type == CAPTURE_AUTH_NULL ? "Null" :