diff options
author | Alan Jenkins <alan.christopher.jenkins@gmail.com> | 2017-08-07 17:23:41 +0100 |
---|---|---|
committer | Alan Jenkins <alan.christopher.jenkins@gmail.com> | 2017-08-07 17:23:41 +0100 |
commit | 54194afb99541cd4fc1bd005f7cd2b8bf1470a1b (patch) | |
tree | cb7741d5e83ff60887063e2a18df43b7c1c878a1 | |
parent | c23c34bcba944d597bdc8e210fb9f0e00d662629 (diff) | |
download | systemd-54194afb99541cd4fc1bd005f7cd2b8bf1470a1b.tar.gz systemd-54194afb99541cd4fc1bd005f7cd2b8bf1470a1b.tar.bz2 systemd-54194afb99541cd4fc1bd005f7cd2b8bf1470a1b.zip |
getty-generator: shift relevant comment to above tty_is_vc()
Comments typically go immediately above the code to implement the
described behaviour. Putting it below confused me for a moment.
-rw-r--r-- | src/getty-generator/getty-generator.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/getty-generator/getty-generator.c b/src/getty-generator/getty-generator.c index b15c76b5b8..a143b5413b 100644 --- a/src/getty-generator/getty-generator.c +++ b/src/getty-generator/getty-generator.c @@ -201,16 +201,16 @@ int main(int argc, char *argv[]) { return EXIT_FAILURE; } + /* We assume that gettys on virtual terminals are + * started via manual configuration and do this magic + * only for non-VC terminals. */ + if (isempty(tty) || tty_is_vc(tty)) continue; if (verify_tty(tty) < 0) continue; - /* We assume that gettys on virtual terminals are - * started via manual configuration and do this magic - * only for non-VC terminals. */ - if (add_serial_getty(tty) < 0) return EXIT_FAILURE; } |