diff options
author | p37sitdu <devnull@localhost> | 2013-01-14 10:26:37 -0300 |
---|---|---|
committer | p37sitdu <devnull@localhost> | 2013-01-14 10:26:37 -0300 |
commit | ca42d0c0fa8267491cd5a1ade0421d48ee515060 (patch) | |
tree | af36971885b5f81357484620d8e9503b5baea06c /dpid/dpid_common.c | |
parent | 67ea60375228cf9e77ced0fad27cf1ca39a1a9ee (diff) |
Remove unused function in dpid
Diffstat (limited to 'dpid/dpid_common.c')
-rw-r--r-- | dpid/dpid_common.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/dpid/dpid_common.c b/dpid/dpid_common.c index 04e95a7d..23b49397 100644 --- a/dpid/dpid_common.c +++ b/dpid/dpid_common.c @@ -24,17 +24,6 @@ void errmsg(char *caller, char *called, int errornum, char *file, int line) MSG_ERR("%s\n", dStrerror(errornum)); } -/*! Selector function for scandir - * Do not scan files starting with '.' - */ -int no_dotfiles(const struct dirent *filedat) -{ - if (filedat->d_name[0] == '.') - return 0; - else - return 1; -} - /*! * Provides an error checked write command. * Call this via the CKD_WRITE macro |