r6541: added double pointer test to win32 echo client
[samba.git] / testprogs / win32 / rpcecho / server.c
index 17b13f0013d743fa6ebd3f1485373a0b9ba04719..b5127596dfc906be54eeeb9bad481af653b99d1f 100644 (file)
@@ -142,9 +142,11 @@ void echo_TestSurrounding(echo_Surrounding *data)
 short echo_TestDoublePointer(short ***data)
 {
        if (!*data) {
+               printf("WARNING: *data == NULL\n");
                return 0;
        }
        if (!**data) {
+               printf("WARNING: **data == NULL\n");
                return 0;
        }
        printf("Incoming double pointer: %d\n", ***data);