summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/sfdb_ui.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/gtk2_ardour/sfdb_ui.cc b/gtk2_ardour/sfdb_ui.cc
index 1ab1faa206..6996273650 100644
--- a/gtk2_ardour/sfdb_ui.cc
+++ b/gtk2_ardour/sfdb_ui.cc
@@ -29,6 +29,7 @@
#include <unistd.h>
#include <limits.h>
+#include <sys/stat.h>
#include <gtkmm/box.h>
#include <gtkmm/stock.h>
@@ -1254,8 +1255,8 @@ SoundFileBrowser::get_paths ()
vector<string>::iterator i;
for (i = filenames.begin(); i != filenames.end(); ++i) {
- GStatBuf buf;
- if ((!g_stat((*i).c_str(), &buf)) && S_ISREG(buf.st_mode)) {
+ struct stat buf;
+ if ((!stat((*i).c_str(), &buf)) && S_ISREG(buf.st_mode)) {
results.push_back (*i);
}
}
@@ -1589,7 +1590,7 @@ SoundFileOmega::check_link_status (const Session* s, const vector<string>& paths
std::string tmpdir(Glib::build_filename (s->session_directory().sound_path(), "linktest"));
bool ret = false;
- if (g_mkdir (tmpdir.c_str(), 0744)) {
+ if (mkdir (tmpdir.c_str(), 0744)) {
if (errno != EEXIST) {
return false;
}
@@ -1613,7 +1614,7 @@ SoundFileOmega::check_link_status (const Session* s, const vector<string>& paths
ret = true;
out:
- g_rmdir (tmpdir.c_str());
+ rmdir (tmpdir.c_str());
return ret;
#endif
}