diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-08-07 11:48:03 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-08-07 14:18:15 +0200 |
commit | 70afd419a602ff4067bf3c25cf25a5d4084b4164 (patch) | |
tree | 56cee4190c5662d3020a0c57a504baef72010eec /source3/printing | |
parent | c54e6b19e395724eb84f6e7157073e8772bc8594 (diff) | |
download | samba-70afd419a602ff4067bf3c25cf25a5d4084b4164.tar.gz samba-70afd419a602ff4067bf3c25cf25a5d4084b4164.tar.bz2 samba-70afd419a602ff4067bf3c25cf25a5d4084b4164.zip |
s3:smbd: conn_free_internal() can be static now
metze
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 26b8d9d81d..b2815c221d 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -1590,7 +1590,7 @@ static uint32 get_correct_cversion(struct pipes_struct *p, } if (conn != NULL) { vfs_ChDir(conn, oldcwd); - conn_free_internal(conn); + conn_free(conn); } if (cversion != -1) { *perr = WERR_OK; @@ -2072,7 +2072,7 @@ WERROR move_driver_to_download_area(struct pipes_struct *p, if (conn != NULL) { vfs_ChDir(conn, oldcwd); - conn_free_internal(conn); + conn_free(conn); } if (W_ERROR_EQUAL(*perr, WERR_OK)) { @@ -5267,7 +5267,7 @@ static bool delete_driver_files(struct pipes_struct *rpc_pipe, done: if (conn != NULL) { vfs_ChDir(conn, oldcwd); - conn_free_internal(conn); + conn_free(conn); } return ret; } |