]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/cdromutl.cc
follow method attribute suggestions by gcc
[apt.git] / apt-pkg / contrib / cdromutl.cc
index afa01a56224d790f0cea9242f1976d78a83ff490..096d3bcf54a162d569ee722a8be949851f327966 100644 (file)
 #include <apt-pkg/configuration.h>
 #include <apt-pkg/strutl.h>
 
-#include <sys/wait.h>
+#include <stdlib.h>
+#include <string.h>
+#include <iostream>
+#include <string>
 #include <sys/statvfs.h>
 #include <dirent.h>
 #include <fcntl.h>
@@ -47,8 +50,8 @@ bool IsMounted(string &Path)
    if (Path[Path.length() - 1] != '/')
       Path += '/';
    
-   /* First we check if the path is actualy mounted, we do this by
-      stating the path and the previous directory (carefull of links!)
+   /* First we check if the path is actually mounted, we do this by
+      stating the path and the previous directory (careful of links!)
       and comparing their device fields. */
    struct stat Buf,Buf2;
    if (stat(Path.c_str(),&Buf) != 0 ||