Import roominfo and roompic files into the database.
[citadel.git] / citadel / utils / ctdlmigrate.c
index c3646c3e41614c45e64b752e5e7bf843ea9ab81e..199772ecc99b21c02e1ff89152209347d0583e63 100644 (file)
@@ -263,10 +263,6 @@ FAIL:      if (sourcefp) pclose(sourcefp);
                        snprintf(cmd, sizeof cmd, "rsync -va --rsh='ssh -S %s' %s@%s:%s/ %s/",
                                socket_path, remote_user, remote_host, &buf[7], ctdl_image_dir);
                }
-               else if (!strncasecmp(buf, "info|", 5)) {
-                       snprintf(cmd, sizeof cmd, "rsync -va --rsh='ssh -S %s' %s@%s:%s/ %s/",
-                               socket_path, remote_user, remote_host, &buf[5], ctdl_info_dir);
-               }
                else {
                        strcpy(cmd, "false");   /* cheap and sleazy way to throw an error */
                }