diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-08-21 17:23:03 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-08-21 17:23:03 +0200 |
commit | 01ed0e2307f3b889b64165fd503d79b4568c47e1 (patch) | |
tree | 097d1db9e1368af620607f779864fad75fbdd04d /src/core/mount-setup.c | |
parent | 4fc9982cb0499f6502aefc5b8f410658c6d4d261 (diff) |
dev-setup: make NULL as parameter for dev_setup() equivalent to ""
Diffstat (limited to 'src/core/mount-setup.c')
-rw-r--r-- | src/core/mount-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/mount-setup.c b/src/core/mount-setup.c index be11bb8f36..1a82a46fef 100644 --- a/src/core/mount-setup.c +++ b/src/core/mount-setup.c @@ -398,7 +398,7 @@ int mount_setup(bool loaded_policy) { /* Create a few default symlinks, which are normally created * by udevd, but some scripts might need them before we start * udevd. */ - dev_setup(""); + dev_setup(NULL); /* Mark the root directory as shared in regards to mount * propagation. The kernel defaults to "private", but we think |