dtcm/server/: just return NULL, not the address of a dummy local variable. Geez.

This commit is contained in:
Jon Trulson
2014-03-22 19:18:22 -06:00
parent 9ed39fd5f2
commit 23e62e5782
4 changed files with 4 additions and 10 deletions

View File

@@ -87,12 +87,10 @@ static CSA_return_code _DtCmsGetOldCalAttrNames(_DtCmsCalendar *cal,
extern void *
cms_ping_5_svc(void *args, struct svc_req *svcrq)
{
char dummy;
if (debug)
fprintf(stderr, "cms_ping_5_svc called\n");
return((void *)&dummy); /* for RPC reply */
return(NULL); /* for RPC reply */
}