From 5c67fb92b47895450a1f1426aaedc7504de96cbd Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Sun, 12 Apr 2009 00:33:56 -0400 Subject: [PATCH] Fixed sending "OPTION DISPLAY" when set with pwmd_setopt(). --- src/libpwmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libpwmd.c b/src/libpwmd.c index 4bfcc840..2b80392f 100644 --- a/src/libpwmd.c +++ b/src/libpwmd.c @@ -2102,7 +2102,7 @@ static gpg_error_t send_pinentry_options(pwm_t *pwm) } if (pwm->pinentry_display) { - rc = pwmd_command(pwm, NULL, "OPTION TITLE=%s", pwm->pinentry_display); + rc = pwmd_command(pwm, NULL, "OPTION DISPLAY=%s", pwm->pinentry_display); if (rc) return rc; -- 2.11.4.GIT