Changes in uspace/srv/volsrv/volsrv.c [ca127f37:4c6fd56] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/volsrv.c
rca127f37 r4c6fd56 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 53 53 #define NAME "volsrv" 54 54 55 const char *vol_icfg_file = "/cfg/initvol.sif"; 56 const char *vol_cfg_file = "/w/cfg/volsrv.sif"; 55 const char *vol_cfg_file = "/cfg/volsrv.sif"; 57 56 58 57 static void vol_client_conn(ipc_call_t *, void *); … … 67 66 log_msg(LOG_DEFAULT, LVL_DEBUG, "vol_init()"); 68 67 69 rc = vol_volumes_create(vol_ icfg_file, &volumes);68 rc = vol_volumes_create(vol_cfg_file, &volumes); 70 69 if (rc != EOK) 71 70 goto error;
Note:
See TracChangeset
for help on using the changeset viewer.