diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2011-01-06 11:43:17 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-01-24 15:13:54 +0100 |
commit | 8d86e2bfe36ae8e03bf2ba0c8206b91e29ad292f (patch) | |
tree | 28985153618e5ac0a5d6c48ca119ef8a1ea1f58e /monitor.c | |
parent | 7ee3bf03984ada1ac7c7a4f27d8583a5718adadb (diff) |
vnc/spice: fix "never" and "now" expire_time
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1136,9 +1136,9 @@ static int expire_password(Monitor *mon, const QDict *qdict, QObject **ret_data) time_t when; int rc; - if (strcmp(whenstr, "now")) { + if (strcmp(whenstr, "now") == 0) { when = 0; - } else if (strcmp(whenstr, "never")) { + } else if (strcmp(whenstr, "never") == 0) { when = TIME_MAX; } else if (whenstr[0] == '+') { when = time(NULL) + strtoull(whenstr+1, NULL, 10); |