aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_realtime.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-22 03:29:03 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-22 03:29:03 +0000
commitea12ee2c58f210ffaf46c48f8673ed06b6022e97 (patch)
tree517b7264c85449ccb91ddad5a878ffbf33286d47 /apps/app_realtime.c
parent4692a24b4d1c697a767c53542fe76bd7d7e64425 (diff)
report the number of rows updated when using RealTime update method (bug #4066)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5496 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_realtime.c')
-rwxr-xr-xapps/app_realtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_realtime.c b/apps/app_realtime.c
index d6450739b..7a1a63d4a 100755
--- a/apps/app_realtime.c
+++ b/apps/app_realtime.c
@@ -87,7 +87,7 @@ static int cli_update_realtime(int fd, int argc, char **argv) {
return RESULT_SUCCESS;
}
- ast_cli(fd, "Updated RealTime record.\n");
+ ast_cli(fd, "Updated %i RealTime record(s).\n", res);
return RESULT_SUCCESS;
}