Changeset ca127f37 in mainline for uspace/srv/volsrv/volsrv.c
- Timestamp:
- 2024-09-07T18:33:36Z (2 months ago)
- Branches:
- master
- Children:
- de4f165
- Parents:
- e90019d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/volsrv.c
re90019d rca127f37 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 53 53 #define NAME "volsrv" 54 54 55 const char *vol_cfg_file = "/cfg/volsrv.sif"; 55 const char *vol_icfg_file = "/cfg/initvol.sif"; 56 const char *vol_cfg_file = "/w/cfg/volsrv.sif"; 56 57 57 58 static void vol_client_conn(ipc_call_t *, void *); … … 66 67 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_init()"); 67 68 68 rc = vol_volumes_create(vol_ cfg_file, &volumes);69 rc = vol_volumes_create(vol_icfg_file, &volumes); 69 70 if (rc != EOK) 70 71 goto error;
Note:
See TracChangeset
for help on using the changeset viewer.