X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fcups.git;a=blobdiff_plain;f=cups%2Fusersys.c;h=c8d2b286460fe108f5c5a8b4f67cc51bac2a9979;hp=64d71d22a81e9a2a473cf6f93b5d12e22eab6036;hb=5a738aeaea5c4dd9384a8601cc5c99be683b69ca;hpb=d9bca400bee5f6168a7e07f85279251f040d734c diff --git a/cups/usersys.c b/cups/usersys.c index 64d71d22a..c8d2b2864 100644 --- a/cups/usersys.c +++ b/cups/usersys.c @@ -4,7 +4,7 @@ * User, system, and password routines for the Common UNIX Printing * System (CUPS). * - * Copyright 2007 by Apple Inc. + * Copyright 2007-2008 by Apple Inc. * Copyright 1997-2006 by Easy Software Products. * * These coded instructions, statements, and computer programs are the @@ -56,7 +56,7 @@ static cups_file_t *cups_open_client_conf(void); * The default encryption setting comes from the CUPS_ENCRYPTION * environment variable, then the ~/.cupsrc file, and finally the * /etc/cups/client.conf file. If not set, the default is - * HTTP_ENCRYPT_IF_REQUESTED. + * @code HTTP_ENCRYPT_IF_REQUESTED@. */ http_encryption_t /* O - Encryption settings */ @@ -133,7 +133,7 @@ cupsEncryption(void) /* * 'cupsGetPassword()' - Get a password from the user. * - * Uses the current password callback function. Returns NULL if the + * Uses the current password callback function. Returns @code NULL@ if the * user does not provide a password. */ @@ -151,7 +151,13 @@ cupsGetPassword(const char *prompt) /* I - Prompt string */ void cupsSetEncryption(http_encryption_t e) /* I - New encryption preference */ { - _cupsGlobals()->encryption = e; + _cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */ + + + cg->encryption = e; + + if (cg->http) + httpEncryption(cg->http, e); } @@ -266,7 +272,7 @@ cupsServer(void) /* * 'cupsSetPasswordCB()' - Set the password callback for CUPS. * - * Pass NULL to restore the default (console) password callback. + * Pass @code NULL@ to restore the default (console) password callback. */ void @@ -286,7 +292,7 @@ cupsSetPasswordCB(cups_password_cb_t cb)/* I - Callback function */ * 'cupsSetServer()' - Set the default server name. * * The "server" string can be a fully-qualified hostname, a numeric - * IPv4 or IPv6 address, or a domain socket pathname. Pass NULL to + * IPv4 or IPv6 address, or a domain socket pathname. Pass @code NULL@ to * restore the default server name. */ @@ -319,13 +325,19 @@ cupsSetServer(const char *server) /* I - Server name */ cg->server[0] = '\0'; cg->servername[0] = '\0'; } + + if (cg->http) + { + httpClose(cg->http); + cg->http = NULL; + } } /* * 'cupsSetUser()' - Set the default user name. * - * Pass NULL to restore the default user name. + * Pass @code NULL@ to restore the default user name. */ void