Fixed escape warning.

This commit is contained in:
Cristiano Giuffrida 2010-04-12 08:39:59 +00:00
parent 9b599bac1d
commit 66a8efba53
2 changed files with 2 additions and 2 deletions

View file

@ -292,7 +292,7 @@ PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *info)
nw_init();
/* Subscribe to driver events for network drivers. */
r = ds_subscribe("drv\.net\..*", DSF_INITIAL | DSF_OVERWRITE);
r = ds_subscribe("drv\\.net\\..*", DSF_INITIAL | DSF_OVERWRITE);
if(r != OK) {
ip_panic(("inet: can't subscribe to driver events"));
}

View file

@ -305,7 +305,7 @@ PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *info)
system_hz = sys_hz();
/* Subscribe to driver events for VFS drivers. */
s = ds_subscribe("drv\.vfs\..*", DSF_INITIAL | DSF_OVERWRITE);
s = ds_subscribe("drv\\.vfs\\..*", DSF_INITIAL | DSF_OVERWRITE);
if(s != OK) {
panic("vfs: can't subscribe to driver events");
}