From d67595177f0a2f05763fc0afe26d0291e0782b8d Mon Sep 17 00:00:00 2001 From: zacheiss Date: Thu, 14 Dec 2000 02:14:40 +0000 Subject: [PATCH] Add winconsoleshell to incremental program arg list. --- server/increment.pc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/server/increment.pc b/server/increment.pc index 9117b396..1ef446d7 100644 --- a/server/increment.pc +++ b/server/increment.pc @@ -92,11 +92,11 @@ void incremental_before(enum tables table, char *qual, char **argv) switch (table) { case USERS_TABLE: - sprintf(stmt_buf, "SELECT u.login, u.unix_uid, u.shell, u.last, " - "u.first, u.middle, u.status, u.clearid, u.type " - "FROM users u WHERE %s", qual); + sprintf(stmt_buf, "SELECT u.login, u.unix_uid, u.shell, " + "u.winconsoleshell, u.last, u.first, u.middle, u.status, " + "u.clearid, u.type FROM users u WHERE %s", qual); dosql(before); - beforec = 9; + beforec = 10; break; case MACHINE_TABLE: sprintf(stmt_buf, "SELECT m.name, m.vendor FROM machine m " @@ -210,11 +210,11 @@ void incremental_after(enum tables table, char *qual, char **argv) switch (table) { case USERS_TABLE: - sprintf(stmt_buf, "SELECT u.login, u.unix_uid, u.shell, u.last, " - "u.first, u.middle, u.status, u.clearid, u.type " - "FROM users u WHERE %s", qual); + sprintf(stmt_buf, "SELECT u.login, u.unix_uid, u.shell, " + "u.winconsoleshell, u.last, u.first, u.middle, u.status, " + "u.clearid, u.type FROM users u WHERE %s", qual); dosql(after); - afterc = 9; + afterc = 10; break; case MACHINE_TABLE: sprintf(stmt_buf, "SELECT m.name, m.vendor FROM machine m " -- 2.45.2