Module: kamailio Branch: master Commit: ec98abde9b57c4569237616089908d39557ad7c2 URL: https://github.com/kamailio/kamailio/commit/ec98abde9b57c4569237616089908d39...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2017-01-06T15:31:18+01:00
kamctl: fixed small typo
---
Modified: utils/kamcmd/kamcmd.c
---
Diff: https://github.com/kamailio/kamailio/commit/ec98abde9b57c4569237616089908d39... Patch: https://github.com/kamailio/kamailio/commit/ec98abde9b57c4569237616089908d39...
---
diff --git a/utils/kamcmd/kamcmd.c b/utils/kamcmd/kamcmd.c index 951e166..372721e 100644 --- a/utils/kamcmd/kamcmd.c +++ b/utils/kamcmd/kamcmd.c @@ -406,7 +406,7 @@ void print_binrpc_val(struct binrpc_val* v, int ident) int r;
if ((v->type==BINRPC_T_STRUCT) && !v->u.end) - ident--; /* fix to have strut beg. idented differently */ + ident--; /* fix to have struct beg. idented differently */ for (r=0; r<ident; r++) putchar(' '); if (v->name.s){ printf("%.*s: ", v->name.len, v->name.s);