From fc3ac28ec7737df66a909dc53446cef46e2093ab Mon Sep 17 00:00:00 2001 From: mar Date: Thu, 25 Aug 1988 11:27:10 +0000 Subject: [PATCH] return all tuples on the RT (missing return) add trigger_dcm function --- clients/mrtest/mrtest.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/clients/mrtest/mrtest.c b/clients/mrtest/mrtest.c index 8fc760e3..6abcf996 100644 --- a/clients/mrtest/mrtest.c +++ b/clients/mrtest/mrtest.c @@ -207,6 +207,7 @@ print_reply(argc, argv) } printf("\n"); count++; + return(SMS_CONT); } test_query(argc, argv) @@ -237,3 +238,14 @@ test_access(argc, argv) status = sms_access(argv[1], argc-2, argv+2); if (status) ss_perror(ss, status, 0); } + + +test_dcm(argc, argv) + int argc; + char **argv; +{ + int status; + + if (status = sms_do_update()) + ss_perror(ss, status, " while triggering dcm"); +} -- 2.45.2