tdb: remove 'EOF' print from tdbrestore
authorAndrew Tridgell <tridge@samba.org>
Thu, 14 Jul 2011 04:03:15 +0000 (14:03 +1000)
committerAndrew Tridgell <tridge@samba.org>
Thu, 21 Jul 2011 01:44:37 +0000 (11:44 +1000)
the EOF message is pointless, and makes for noisy scripts

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

lib/tdb/tools/tdbrestore.c

index 1daac63db18ef5c1a52b3b2777ad2a4de2bd1852..8106cf9b06a55794cb6b3b489da54596fa315dd5 100644 (file)
@@ -206,7 +206,6 @@ static int restore_tdb(const char *fname)
                fprintf(stderr, "Error closing tdb\n");
                return 1;
        }
-       fprintf(stderr, "EOF\n");
        return 0;
 }