Index: check_dig.c =================================================================== RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_dig.c,v retrieving revision 1.39 diff -c -r1.39 check_dig.c *** check_dig.c 25 Dec 2004 23:17:38 -0000 1.39 --- check_dig.c 23 Jan 2005 05:00:19 -0000 *************** *** 124,129 **** --- 124,133 ---- result = STATE_OK; } + /* rmo: 050122 - Translate output TAB -> SPACE */ + char *t = output; + while ((t = index(t, '\t')) != NULL) {*t = ' ';} + } while (!strstr (input_buffer, ";; ")); if (result == STATE_UNKNOWN) { *************** *** 334,340 **** printf (_("\ -a, --expected_address=STRING\n\ ! an address expected to be in the asnwer section.\n\ if not set, uses whatever was in -l\n")); printf (_(UT_WARN_CRIT)); --- 338,344 ---- printf (_("\ -a, --expected_address=STRING\n\ ! an address expected to be in the answer section.\n\ if not set, uses whatever was in -l\n")); printf (_(UT_WARN_CRIT));