Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
daemon/automount: Log signal name instead of number
Nobody knows all signal numbers by heart, so log the name.
  • Loading branch information
pmenzel committed Jun 10, 2017
1 parent 9f13e3e commit bee4012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/automount.c
Expand Up @@ -1540,7 +1540,7 @@ static void *statemachine(void *arg)
continue;

default:
logerr("got unexpected signal %d!", sig);
logerr("got unexpected signal %s!", strsignal(sig));
continue;
}
}
Expand Down

0 comments on commit bee4012

Please sign in to comment.