diff options
Diffstat (limited to 'src/cmd/rc/plan9ish.c')
-rw-r--r-- | src/cmd/rc/plan9ish.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/rc/plan9ish.c b/src/cmd/rc/plan9ish.c index abb66cc3..6e9d59f1 100644 --- a/src/cmd/rc/plan9ish.c +++ b/src/cmd/rc/plan9ish.c @@ -400,8 +400,8 @@ notifyf(void *unused0, char *s) if(strncmp(s, "sys: ", 5)!=0) interrupted=1; goto Out; } - - pfmt(err, "rc: note: %s\n", s); + if(strcmp(s, "sys: child") != 0) + pfmt(err, "rc: note: %s\n", s); noted(NDFLT); return; Out: |