| 109 | */ |
| 110 | |
| 111 | int /* O - 1 on success, 0 on failure */ |
| 112 | cupsSetServerCredentials( |
| 113 | const char *path, /* I - Keychain path or @code NULL@ for default */ |
| 114 | const char *common_name, /* I - Default common name for server */ |
| 115 | int auto_create) /* I - 1 = automatically create self-signed certificates */ |
| 116 | { |
| 117 | DEBUG_printf(("cupsSetServerCredentials(path=\"%s\", common_name=\"%s\", auto_create=%d)", path, common_name, auto_create)); |
| 118 | |
| 119 | (void)path; |
| 120 | (void)common_name; |
| 121 | (void)auto_create; |
| 122 | |
| 123 | return (0); |
| 124 | } |
| 125 | |
| 126 | |
| 127 | /* |
no outgoing calls
no test coverage detected