From: mar Date: Thu, 25 Aug 1988 11:27:10 +0000 (+0000) Subject: return all tuples on the RT (missing return) X-Git-Tag: KREL1~189 X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/fc3ac28ec7737df66a909dc53446cef46e2093ab return all tuples on the RT (missing return) add trigger_dcm function --- 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"); +}