diff options
author | Max Kellermann <max@duempel.org> | 2008-08-28 20:02:43 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-28 20:02:43 +0200 |
commit | deb29e08844c33f60357d6c54f7255514925c748 (patch) | |
tree | 563f15e3b9ac4ba2e8568b33ff2c943dbe4ff494 /src/Makefile.am | |
parent | 9340e291f0906b4ae885d18b3391756cbdf66e78 (diff) | |
download | mpd-deb29e08844c33f60357d6c54f7255514925c748.tar.gz mpd-deb29e08844c33f60357d6c54f7255514925c748.tar.xz mpd-deb29e08844c33f60357d6c54f7255514925c748.zip |
renamed interface.c to client.c
I don't believe "interface" is a good name for something like
"connection by a client to MPD", let's call it "client". This is the
first patch in the series which changes the name, beginning with the
file name.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f4af3a5e3..f88485caa 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -53,7 +53,7 @@ mpd_headers = \ inputStream_file.h \ inputStream_http.h \ inputStream_http_auth.h \ - interface.h \ + client.h \ list.h \ dlist.h \ listen.h \ @@ -116,7 +116,7 @@ mpd_SOURCES = \ inputStream.c \ inputStream_file.c \ inputStream_http.c \ - interface.c \ + client.c \ ioops.c \ list.c \ listen.c \ |