X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=apps%2Fsilc%2Fsilc.c;h=e449af1d89883c03da6294b2bcbcd146017e7f21;hp=47f39dd983e9b8f40a07c206bb30dd668c6204f0;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hpb=7910ce2a5c55211a4ea09a52832c6ed32c0b64fd diff --git a/apps/silc/silc.c b/apps/silc/silc.c index 47f39dd9..e449af1d 100644 --- a/apps/silc/silc.c +++ b/apps/silc/silc.c @@ -549,7 +549,7 @@ static void silc_client_clear_input(SilcClientInternal app) static void silc_client_process_message(SilcClientInternal app) { unsigned char *data; - uint32 len; + SilcUInt32 len; SILC_LOG_DEBUG(("Start")); @@ -558,9 +558,9 @@ static void silc_client_process_message(SilcClientInternal app) if (data[0] == '/' && data[1] != ' ') { /* Command */ - uint32 argc = 0; + SilcUInt32 argc = 0; unsigned char **argv, *tmpcmd; - uint32 *argv_lens, *argv_types; + SilcUInt32 *argv_lens, *argv_types; SilcClientCommand *cmd; SilcClientCommandContext ctx; @@ -658,9 +658,9 @@ SILC_TASK_CALLBACK(silc_client_run_commands) cs = app->config->commands; while(cs) { - uint32 argc = 0; + SilcUInt32 argc = 0; unsigned char **argv, *tmpcmd; - uint32 *argv_lens, *argv_types; + SilcUInt32 *argv_lens, *argv_types; SilcClientCommand *cmd; SilcClientCommandContext ctx;