Changeset 8595
- Timestamp:
- 10/26/10 15:17:21 (3 years ago)
- Files:
-
- 1 modified
-
branches/Orange-Branch/src/server/pvfs2-server.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/Orange-Branch/src/server/pvfs2-server.c
r8494 r8595 678 678 TROVE_context_id trove_context = -1; 679 679 char buf[16] = {0}; 680 PVFS_fs_id orig_fsid ;680 PVFS_fs_id orig_fsid=0; 681 681 PVFS_ds_flags init_flags = 0; 682 682 int bmi_flags = BMI_INIT_SERVER; … … 874 874 } 875 875 876 orig_fsid = cur_fs->coll_id;877 876 ret = trove_collection_lookup( 878 877 cur_fs->trove_method, 879 cur_fs->file_system_name, &( cur_fs->coll_id), NULL, NULL);878 cur_fs->file_system_name, &(orig_fsid), NULL, NULL); 880 879 881 880 if (ret < 0) … … 889 888 { 890 889 gossip_err("Error: configuration file does not match storage collection.\n"); 891 gossip_err(" configfile fs_id: %d\n", (int)orig_fsid);892 gossip_err(" storage fs_id: %d\n", (int)cur_fs->coll_id);890 gossip_err(" storage file fs_id: %d\n", (int)orig_fsid); 891 gossip_err(" config file fs_id: %d\n", (int)cur_fs->coll_id); 893 892 gossip_err("Warning: This most likely means that the configuration\n"); 894 893 gossip_err(" files have been regenerated without destroying and\n");
