From d5afe2c08724b4b263a76f187e39861c1e6e0cf5 Mon Sep 17 00:00:00 2001 From: Michael Vrable Date: Thu, 3 May 2007 15:13:21 -0700 Subject: [PATCH] Rename tarstore -> store, since it is the only implementation now. --- Makefile | 2 +- scandir.cc | 2 +- tarstore.cc => store.cc | 2 +- tarstore.h => store.h | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename tarstore.cc => store.cc (99%) rename tarstore.h => store.h (100%) diff --git a/Makefile b/Makefile index f8c9ec7..ffa28a3 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CXXFLAGS=-O -Wall -D_FILE_OFFSET_BITS=64 -g -pg \ `pkg-config --cflags $(PACKAGES)` LDFLAGS=-g -pg -ltar `pkg-config --libs $(PACKAGES)` -SRCS=format.cc scandir.cc sha1.cc tarstore.cc +SRCS=format.cc scandir.cc sha1.cc store.cc OBJS=$(SRCS:.cc=.o) scandir : $(OBJS) diff --git a/scandir.cc b/scandir.cc index dc10771..f3bf302 100644 --- a/scandir.cc +++ b/scandir.cc @@ -18,7 +18,7 @@ #include #include "format.h" -#include "tarstore.h" +#include "store.h" #include "sha1.h" using std::list; diff --git a/tarstore.cc b/store.cc similarity index 99% rename from tarstore.cc rename to store.cc index 5133c66..00fd26c 100644 --- a/tarstore.cc +++ b/store.cc @@ -19,7 +19,7 @@ #include #include -#include "tarstore.h" +#include "store.h" using std::list; using std::set; diff --git a/tarstore.h b/store.h similarity index 100% rename from tarstore.h rename to store.h -- 2.20.1