tdb:tdbstore.c - remove an useless '\'
authorMatthias Dieter Wallnöfer <mdw@samba.org>
Sat, 27 Nov 2010 17:21:32 +0000 (18:21 +0100)
committerMatthias Dieter Wallnöfer <mdw@samba.org>
Sat, 27 Nov 2010 17:22:38 +0000 (18:22 +0100)
Discovered by a warning of the Tru64 host on the buildfarm.

lib/tdb/tools/tdbrestore.c

index 485c440df1f9c871078ce889adab94cc98ccbb47..601cd5e5432adc37afe0e7862f4ace04d2a39ff7 100644 (file)
@@ -39,7 +39,7 @@ static int read_linehead(FILE *f)
                if (c == EOF) {
                        return -1;
                }
-               if (c == '\(') {
+               if (c == '(') {
                        break;
                }
        }