Skip to content

Commit

Permalink
fix PulseAudio/machine-id problem
Browse files Browse the repository at this point in the history
  • Loading branch information
netblue30 committed Jan 18, 2017
1 parent 15f43d3 commit f278102
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/firejail/fs_etc.c
Expand Up @@ -31,8 +31,8 @@ void fs_machineid(void) {
uint32_t u32[4];
} mid;

// if --machine-id flag is active, do nothing
if (arg_machineid)
// if --machine-id flag is inactive, do nothing
if (arg_machineid == 0)
return;

// init random number generator
Expand Down
2 changes: 1 addition & 1 deletion src/man/firejail-profile.txt
Expand Up @@ -452,7 +452,7 @@ Assign MAC addresses to the last network interface defined by a net command.

.TP
\fBmachine-id
Preserve id number in /etc/machine-id file. By default a new random id is generated inside the sandbox.
Spoof id number in /etc/machine-id file - a new random id is generated inside the sandbox.

.TP
\fBmtu number
Expand Down
2 changes: 1 addition & 1 deletion src/man/firejail.txt
Expand Up @@ -678,7 +678,7 @@ $ firejail \-\-net=eth0 \-\-mac=00:11:22:33:44:55 firefox

.TP
\fB\-\-machine-id
Preserve id number in /etc/machine-id file. By default a new random id is generated inside the sandbox.
Spoof id number in /etc/machine-id file - a new random id is generated inside the sandbox.
.br

.br
Expand Down

0 comments on commit f278102

Please sign in to comment.