summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-04-22 03:29:03 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-04-22 03:29:03 +0000
commitc2ef8373c73cc56816ce00349a1b5fe7b1401ccd (patch)
tree517b7264c85449ccb91ddad5a878ffbf33286d47 /apps
parent06de953fbc258431f0f161cba3026cb3a33e242b (diff)
report the number of rows updated when using RealTime update method (bug #4066)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5496 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-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;
}