diff options
author | doktornotor <notordoktor@gmail.com> | 2016-07-08 18:24:26 +0200 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2016-07-08 20:19:00 -0500 |
commit | 84b6f05a2a6da1082139a128ddf91035cb0fc760 (patch) | |
tree | fec0d403f6c60a48770830f151690e466f4ddabc /src/etc/inc/system.inc | |
parent | 6ee6c8bb0f09c3c7106aae37029f7de55a8bd780 (diff) | |
download | pfsense-84b6f05a2a6da1082139a128ddf91035cb0fc760.zip pfsense-84b6f05a2a6da1082139a128ddf91035cb0fc760.tar.gz |
Missing closing quote
Diffstat (limited to 'src/etc/inc/system.inc')
-rw-r--r-- | src/etc/inc/system.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/inc/system.inc b/src/etc/inc/system.inc index cb7756e..137550d 100644 --- a/src/etc/inc/system.inc +++ b/src/etc/inc/system.inc @@ -1995,7 +1995,7 @@ function system_dmesg_save() { unset($dmesg); // vm-bhyve expects dmesg.boot at the standard location - @symlink("{$g['varlog_path']}/dmesg.boot", "{$g['varrun_path']}/dmesg.boot); + @symlink("{$g['varlog_path']}/dmesg.boot", "{$g['varrun_path']}/dmesg.boot"); return 0; } |