Fix typo
authorWouter Verhelst <w@uter.be>
Tue, 21 Jan 2014 19:16:56 +0000 (20:16 +0100)
committerWouter Verhelst <w@uter.be>
Tue, 21 Jan 2014 19:16:56 +0000 (20:16 +0100)
the "dir" parameter contains the name of the directory, while the "dirh"
variable is an opendir() handle that'll only be NULL in case of error.

By complete accident, this compiled, but it wouldn't actually ever do
anything useful.

nbd-server.c

index 461959f..f07d120 100644 (file)
@@ -510,7 +510,7 @@ GArray* do_cfile_dir(gchar* dir, GError** e) {
        GArray* tmp;
        struct stat stbuf;
 
-       if(!dir) {
+       if(!dirh) {
                g_set_error(e, NBDS_ERR, NBDS_ERR_CFILE_DIR_UNKNOWN, "Invalid directory specified: %s", strerror(errno));
                return NULL;
        }